I am currently coding a slot-like game, and everything seems to work besides this one thing:
File "/Users/r/Desktop/Game.py", line 36
print(one, end = " ")
^
SyntaxError: invalid syntax
Does anyone know how to fix this?
I am currently coding a slot-like game, and everything seems to work besides this one thing:
File "/Users/r/Desktop/Game.py", line 36
print(one, end = " ")
^
SyntaxError: invalid syntax
Does anyone know how to fix this?
Are you trying to pass a Boolean for the second parameter to print
?
In that case you want print(one, end == ' ')