so i'm coding a tic tac toe game in python 3.2 and i have spent night and day trying to fix this and going over my code, script, or whatever you want to call it, so many times and still can't find it. i've googled it and all the answers are all to confusing or the person is scripting something way different from my tic tac toe game. and please beware, i'm just a beginner at python. when i try and run it an error comes up:
Traceback (most recent call last):
File "/Users/user/Desktop/tic tac toe game.py", line 41, in <module>
input = input("Select a spot:")
TypeError: 'int' object is not callable"
what does that mean? here's the code it says it's having a problem with:
while True:
input = input("Select a spot:")
input = int(input)
if you could help me, that would mean so much. it's been so annoying and i've been trying my hardest to fix it.