Godzilla icon indicating copy to clipboard operation
Godzilla copied to clipboard

line 15 print Fore.BLUE

Open jamatou opened this issue 2 years ago • 1 comments

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

jamatou avatar Sep 24 '23 08:09 jamatou

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:

  1. Force execution in Python 2.
  2. Correct the code to function in Python 3.

ramonsousap avatar Oct 31 '23 04:10 ramonsousap