This function throws an error at the input function claiming that the arguments are invalid.. any resolutions?
def assignSquareValues():
square=[[0,0,0],
[0,0,0],
[0,0,0]]
count=0
try:
for r in range(3):
for c in range(3):
count+=1
print(count)
square[r][c]= int(input(("Enter a number(1-9) for square #",(count)+":",sep=''))) #this line throws an error stating that "TypeError: input expected at most 1 arguments, got 2"
except Exception as err:
print(err)
assignSquareValues()
checkMagicSquare(square)