Getting TypeError: 'int' object is not callable. What am i doing wrong as i just want to add 10 to the z variable
print ("Hello World")
x=int(input("Enter X"))
y=int(input("Enter Y"))
z=int(input("Enter Z")) + 10
print(x)
print(y)
print(z)
print (max(x,y,z))
input('Press ENTER to exit')
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…