Update check.py #4

Merged
lumijiez merged 1 commits from patch-3 into main 2023-01-07 17:40:01 +00:00

View File

@@ -37,7 +37,7 @@ def checkPassword(psw):
x = max(checkLength(psw), checkComposition(psw), checkRepeating(psw)) x = max(checkLength(psw), checkComposition(psw), checkRepeating(psw))
if x: if x:
return x return x
return "good" return "Good!"
passw = input() passw = input()