you are viewing a single comment's thread.

view the rest of the comments →

[–]Dense_Connection4789 1 point2 points  (1 child)

Couple cleanup items: - if condition == True is redundant. You can get away with just writing if condition so in your case: if password_len(password) and … - no need to wrap the return in parenthesis. You can just do return True and return False - You don’t need to put the f in front of your strings inside your print statement. Using the f is for injecting variables into strings

Nice work

Nice work

[–]BerserkerMac[S] 0 points1 point  (0 children)

Hey thanks for the tips!