You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ python webkiller.py
File "webkiller.py", line 16
print '\r'
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print('\r')?
$ python webkiller.py
File "webkiller.py", line 16
print '\r'
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print('\r')?
$
The text was updated successfully, but these errors were encountered:
probably because you're using python 3 so that the syntax is different so that instead of print'\r' it should be
print("\r")
so that you should modify every print
$ python webkiller.py
File "webkiller.py", line 16
print '\r'
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print('\r')?
$ python webkiller.py
File "webkiller.py", line 16
print '\r'
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print('\r')?
$
The text was updated successfully, but these errors were encountered: