Hacker News new | ask | show | jobs
by ghacks 4551 days ago
I'm getting an invalid syntax error when I try to run the scripts on Windows.

C:\Python33\Scripts\quietnet-master>python listen.py File "listen.py", line 71 print '' ^ SyntaxError: invalid syntax

1 comments

You are using Python 3.3, but the script is for Python 2.x where print is a built-in rather than a function. Welcome to the fragmented world of Python.