nihal111 / J.A.R.V.I.S

A personal assistant with simple, rudimentary AI
319 stars 213 forks source link

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)? #34

Open s3ee opened 3 years ago

s3ee commented 3 years ago

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 commented 3 years ago

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)