Godzilla
Godzilla copied to clipboard
line 15 print Fore.BLUE
Hi, I run godzilla.py , but i got error File "/home/jamba/Desktop/BB/sql/Godzilla/godzilla.py", line 15 print Fore.BLUE +""" ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
can you please help me Thanks
The error mentioned is due to an incompatibility in the code syntax with the version of Python you're using. The code seems to be incompatible with Python 3, apparently written in Python 2. You have two options:
- Force execution in Python 2.
- Correct the code to function in Python 3.