cds201/pwd_ok.py
2025-11-27 09:24:57 +01:00

7 lines
130 B
Python

pwd = "fjkdsaljfklasj432"
if len(pwd) >= 8:
for c in pwd:
if c.isnumeric():
print("OK")
break