[Solved] obj.name() object is not callable [closed]


Learn Indentation



a = int (input("x"))
b = int (input ("y"))
c = int (input("z "))
if a ==b==c:
     print ("all equal")
elif(a>b and a>c):
    print("x is greatest")
elif(b>c and b>a):
    print("y is greatest ")
else :
    print("z is greatest")

solved obj.name() object is not callable [closed]