Getting Typeerror: 'int' Object Is Not Callable
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
Solution 1:
Line 5 should read:
z = (int(input("Enter Z"))+10)
Post a Comment for "Getting Typeerror: 'int' Object Is Not Callable"