We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8a60c9 commit 5cab0b0Copy full SHA for 5cab0b0
other/password.py
@@ -51,16 +51,19 @@ def random(chars_incl: str, i: int) -> str:
51
return "".join(secrets.choice(chars_incl) for _ in range(i))
52
53
54
-def random_number(chars_incl, i):
55
- pass # Put your code here...
+# Put your code here...
+# def random_number(chars_incl, i):
56
+# pass
57
58
-def random_letters(chars_incl, i):
59
60
+# def random_letters(chars_incl, i):
61
62
63
-def random_characters(chars_incl, i):
64
65
+# def random_characters(chars_incl, i):
66
67
68
69
def is_strong_password(password: str, min_length: int = 8) -> bool:
0 commit comments