Python Forum
Invalid syntax 3.6.2 with 6 highlighted
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Invalid syntax 3.6.2 with 6 highlighted
#5
Use code tag,read BBCode help.
Here is code without(>>>) which shall only be there if do interactive testing.
>>> shall not be there when writing longer code.
Also fixed error in code.
import random

# write answers
ans1 = "go for it!"
ans2 = "No way, sir"
ans3 = "Not sure. Ask again."
ans4 = "Fear of the unknown."
ans5 = "It would be madness to do that."
ans6 = "Only You can save mankind."
ans7 = "Makes no difference to me."
ans8 = "That's the right choice."

print("Welcome to my magic 8 ball.")
question = input("ask me for advice then press RETURN to shake me. \n")
print("shaking... \n" * 4)
choice = random.randint(1, 8)
if choice == 1:
    answer = ans1
elif choice == 2:
    answer = ans2
elif choice == 3:
    answer = ans3
elif choice == 4:
    answer = ans4
elif choice == 5:
    answer = ans5
elif choice == 6:
    answer = ans6
elif choice == 7:
    answer = ans7
else:
    answer = ans8
print(answer)
input("\n\nPress the RETURN key to finish.") 
Output:
E:\1 λ python ans.py Welcome to my magic 8 ball. ask me for advice then press RETURN to shake me. shaking... shaking... shaking... shaking... go for it! Press the RETURN key to finish.
So it work,if you shall use code in IDLE look at image.
Copy this code and open File --> New File window(paste in code and save it as eg ans.py)
Now you can run code it with Run -- Run Module(F5).
Reply


Messages In This Thread
RE: Invalid syntax 3.6.2 with 6 highlighted - by snippsat - Apr-12-2018, 03:27 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  print(data) is suddenly invalid syntax db042190 6 1,324 Jun-14-2023, 02:55 PM
Last Post: deanhystad
  SyntaxError: invalid syntax ?? korenron 15 5,994 Jan-25-2022, 11:46 AM
Last Post: korenron
  Invalid syntax with an f-string Mark17 7 8,190 Jan-14-2022, 04:44 PM
Last Post: Mark17
  invalid syntax in my class CompleteNewb 2 2,004 Dec-13-2021, 09:39 AM
Last Post: Larz60+
Exclamation Invalid syntax error(Predict Ethereum Price) lulu43366 2 3,262 Sep-24-2021, 01:24 PM
Last Post: lulu43366
  Unexplained Invalid syntax Error cybertooth 5 3,408 Aug-02-2021, 10:05 AM
Last Post: cybertooth
  [split] SyntaxError: invalid syntax Code_X 3 2,858 May-04-2021, 05:15 PM
Last Post: Yoriz
  Invalid syntax error - need help fixing calgk01 3 3,439 Feb-23-2021, 08:41 PM
Last Post: nilamo
  Invalid syntax using conditionals if - else jperezqu 1 2,395 Jan-13-2021, 07:32 PM
Last Post: bowlofred
  invalid syntax in line 5. Help Asadzangibaloch 2 2,464 Dec-10-2020, 04:26 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020