Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Simple Password Checker
#5
The reason the error is flagging is because it isn't checking if the letters meet one requirement, it is checking if each letter meets all of them, so a lowercase I flags as not being uppercase, or a symbol, or a number.

Logically it would be better if you had one message eg "Your PW must include one uppercase and one lowercase...." and then have one if statement to check it.

for i in password:
    if i not in lowy and i not in uppy and len(i) < 7 and....:
        print("Your PW must include....")
    else:
        print("Much Strong, Many Wow.")
Dexty likes this post
while dad_has_cigs == True:
    happiness = True
    if dad_has_cigs == False:
    print("Dad come home!")
    happiness = not happiness
    break
Reply


Messages In This Thread
Simple Password Checker - by Dexty - Sep-21-2021, 09:29 PM
RE: Simple Password Checker - by deanhystad - Sep-21-2021, 09:35 PM
RE: Simple Password Checker - by BashBedlam - Sep-21-2021, 10:50 PM
RE: Simple Password Checker - by Dexty - Sep-23-2021, 09:54 PM
RE: Simple Password Checker - by bowlofred - Sep-22-2021, 12:18 AM
RE: Simple Password Checker - by jamesaarr - Sep-23-2021, 10:57 AM
RE: Simple Password Checker - by SamHobbs - Sep-23-2021, 11:11 PM
RE: Simple Password Checker - by Dexty - Sep-24-2021, 06:17 AM
RE: Simple Password Checker - by deanhystad - Sep-24-2021, 06:49 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Variable not defined in password checker DAS 4 4,619 Aug-27-2017, 08:40 PM
Last Post: ichabod801
  Password checker sammy2938 2 11,010 Jul-19-2017, 08:04 PM
Last Post: nilamo
  Email Checker with IMAPlib ronaldrios 1 3,840 Jun-23-2017, 04:03 AM
Last Post: Larz60+

Forum Jump:

User Panel Messages

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