Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Unexpected syntax error
#1
I'm using the following code:

if score == 1 or score == 2: # if a weak password is created asks the user to try again
        print("This is a weak password, please try again")
        password = input("Please enter the new password:")
elif score == 3 or score == 4: # if a mediocre password is given asks the user whether they want to try again
       retry =  input("This is a weak password, do you want to try again? (y/n)")                             
if retry == "y": # if yes they restart the loop
           password = input("Please enter the new password:")
else retry == "n": # if no the loop is closed 
            try_again = False
else score == 5: # if strong password is given closes the loop 
        print("That is a strong password")
        try_again = False
return New_password
But I get this syntax error:

Error:
File "c:/Users/djwil/Documents/python/learning python/Chapter 19 - Chunky Challenges/Passwords.py", line 62 else retry == "n": # if no the loop is closed ^ SyntaxError: invalid syntax
But I'm not sure what's incorrect about my code. I can upload the full code if necessary the above is just a few lines of it.
Reply


Messages In This Thread
Unexpected syntax error - by djwilson0495 - Aug-24-2020, 10:21 AM
RE: Unexpected syntax error - by ndc85430 - Aug-24-2020, 10:26 AM
RE: Unexpected syntax error - by djwilson0495 - Aug-24-2020, 11:47 AM
RE: Unexpected syntax error - by deanhystad - Aug-24-2020, 01:27 PM
RE: Unexpected syntax error - by djwilson0495 - Aug-24-2020, 02:48 PM
RE: Unexpected syntax error - by deanhystad - Aug-24-2020, 04:18 PM
RE: Unexpected syntax error - by djwilson0495 - Aug-25-2020, 10:42 AM
RE: Unexpected syntax error - by deanhystad - Aug-25-2020, 01:34 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  World Clock syntax error OscarBoots 1 131 Yesterday, 05:20 AM
Last Post: snippsat
  Syntax error for "root = Tk()" dlwaddel 15 1,280 Jan-29-2024, 12:07 AM
Last Post: dlwaddel
Photo SYNTAX ERROR Yannko 3 423 Jan-19-2024, 01:20 PM
Last Post: rob101
  Syntax error while executing the Python code in Linux DivAsh 8 1,677 Jul-19-2023, 06:27 PM
Last Post: Lahearle
  Code is returning the incorrect values. syntax error 007sonic 6 1,265 Jun-19-2023, 03:35 AM
Last Post: 007sonic
  syntax error question - string mgallotti 5 1,354 Feb-03-2023, 05:10 PM
Last Post: mgallotti
  Syntax error? I don't see it KenHorse 4 1,317 Jan-15-2023, 07:49 PM
Last Post: Gribouillis
  Syntax error tibbj001 2 929 Dec-05-2022, 06:38 PM
Last Post: deanhystad
  Python-for-Android:p4a: syntax error in main.py while compiling apk jttolleson 2 1,903 Sep-17-2022, 04:09 AM
Last Post: jttolleson
  Mysql Syntax error in pymysql ilknurg 4 2,403 May-18-2022, 06:50 AM
Last Post: ibreeden

Forum Jump:

User Panel Messages

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