maximetro icon indicating copy to clipboard operation
maximetro copied to clipboard

Running game gives error

Open tvmaaren opened this issue 3 years ago • 2 comments

When I try to run the game with the following command:

maximetro/maximetro.py

I get the following output:

Traceback (most recent call last): File "/tmp/maximetro/maximetro.py", line 16, in from Util import * File "/tmp/maximetro/Util.py", line 113 print string, ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(string, end=" ")?

I use python version 3.9.6

tvmaaren avatar Sep 13 '21 09:09 tvmaaren

You should enclose the command in parentheses like this: print(string) Hope that works for you! If you see any more related errors do the same. (By the way if you do not know how to find the file look at the error message and find the correct file and line which the error occurred in)

sergi0g avatar May 10 '22 15:05 sergi0g

Yes thanks. That solved the issue.

tvmaaren avatar May 14 '22 10:05 tvmaaren