#4 Conditions in Python if…,elif… ,else || PROGRAMING KATTA || Ubuntu, Python
a = 10 b = 12 c = 31 if(a[GT]b) and (a[GT]c): print(“The Greater No is”, a) elif(b[GT]c): print(“The Greater No is “, b) else: print(“The Greater No. is”, c)
ubuntu
a = 10 b = 12 c = 31 if(a[GT]b) and (a[GT]c): print(“The Greater No is”, a) elif(b[GT]c): print(“The Greater No is “, b) else: print(“The Greater No. is”, c)
ubuntu