J.A.R.V.I.S icon indicating copy to clipboard operation
J.A.R.V.I.S copied to clipboard

File "script.py", line 102 print "J.A.R.V.I.S: " + jarvis_speech ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print("J.A.R.V.I.S: " + jarvis_speech)?

Open s3ee opened this issue 4 years ago • 1 comments

Hi I am trying to run python the project right I have all the requirements installed everything and I come by this error.

File "script.py", line 102 print "J.A.R.V.I.S: " + jarvis_speech ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print("J.A.R.V.I.S: " + jarvis_speech)?

I don't get why. Plz fix asap!

s3ee avatar Feb 24 '21 17:02 s3ee

I actually found the fix. You have to change the code. See the code is like this.

print "J.A.R.V.I.S: " + jarvis_speech

This is how it's supposed to be like.

(" J.A.R.V.I.S: " + jarvis_speech)

s3ee avatar Feb 24 '21 17:02 s3ee