I have two methods inside a class. I want to call a method's variable inside another one. Here is my code:
#First Method:
def starter_loan_check(self):
#global total_offer,final_offer
#final_offer=[]
for i in self.overall_data:
if i[1]=='PS' and i[3] in conf.PS_State and i[5]>29:
if i[2]!='challengerTUFT':
for c in cutoff_config:
if i[3]==c['State'] and i[2]==c['challenger'] and i[4]<['CUTOFF3'] and i[4]>=['CUTOFF4']:
if i[7]>50:
global total_offer,final_offer
final_offer=[]
total_offer=[i for i in product(*[conf.i[3]['Loan_Amount'],conf.i[3]['Apr'],conf.i[3]['Term']])
#global total_offer,final_offer
#final_offer=[]
for t in total_offer:
if t[0]>min(i[3]['Loan_Amount']) and t[1] in i[3]['Apr'] and t[2] in i[3]['Term']:
final_offer.append(t)
elif t[0]>max(i[3]['Loan_Amount']) and t[1] in i[3]['Apr'] and t[2] in i[3]['Term']:
t[0]=max(i[3]['Loan_Amount'])
final_offer.append(t)
elif i[9]>75:
if t[0]>min(i[3]['Loan_Amount']) and t[1] in i[3]['Apr'] and t[2] in i[3]['Term']:
final_offer.append(t)
elif t[0]>max(i[3]['Loan_Amount']) and t[1] in i[3]['Apr'] and t[2] in i[3]['Term']:
t[0]=max(i[3]['Loan_Amount'])
final_offer.append(t)
And I am trying to access final_offer here: Second Method:
def starter_loan_logic(self):
for i in self.query1_data:
for j in final_offer:
if j[0]/(i[3]*.85)>.30:#LTI Check
final_offer.remove(j)
if i[2]==j[0] and i[4]=='BI_WEEKLY':
PTI=i[5]/((i[3]*0.85)/12)>0.20
final_offer.remove(j)
if i[2]==j[0] and i[4]=='TWICE_PER_MONTH':
PTI=i[6]/((i[3]*0.85)/12)>0.20
final_offer.remove(j)
if i[2]==j[0] and i[4]=='MONTHLY':
PTI=i[7]/((i[3]*0.85)/12)>0.20
final_offer.remove(j)
for k in self.overall_data:
k['state']=='IL' and i[5]/((i[3]*0.85)/12)>0.225
final_offer.remove(j)
But I am getting an invalid syntax error at for t in total_offer Here I have tried Global but I am not sure whether I am using it correctly or not. please help me to understand that how can I access one function's variable inside another function.