if emi_1<emi_2:
print(“option 1 has lowest emi”)
else:
print(“option 2 has lowest emi”)
it gives error like:
TypeError Traceback (most recent call last)
/tmp/ipykernel_36/3820858430.py in
----> 1 if emi_1<emi_2:
2 print(“option 1 has lowest emi”)
3 else:
4 print(“option 2 has lowest emi”)
TypeError: ‘<’ not supported between instances of ‘NoneType’ and ‘NoneType’