J.A.R.V.I.S
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)?
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!
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)