So I have been making a program in Visual Studio using the Python 3.6 (64 bit) and for some reason whenever I try to add a number to a user input it comes up as a error. e.g.:
while X == 0:
print('Enter Input')
Y = input('>')
Y = Y + 180
print (Y)
and when I run this code it comes up with a error saying I have to convert it to STR, not INT. But when I try to run it with the command as seen below:
while X == 0:
print('Enter Input')
Y = input('>')
int(Y)
Y = Y + 180
print (Y)
When I run this code the same error appears, switching out the 'int' bit of code with 'STR' gets the exact same error despite the fact that the debugger lists both the variables as the same encoding method (Str) am I just retarded? please help.