Skip to content

Commit 22122f4

Browse files
authored
Update password.py
1 parent 2485e70 commit 22122f4

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

Diff for: other/password.py

-12
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,6 @@ def random(chars_incl: str, i: int) -> str:
5151
return "".join(secrets.choice(chars_incl) for _ in range(i))
5252

5353

54-
# def random_number(chars_incl, i):
55-
# pass # Put your code here...
56-
57-
58-
# def random_letters(chars_incl, i):
59-
# pass # Put your code here...
60-
61-
62-
# def random_characters(chars_incl, i):
63-
# pass # Put your code here...
64-
65-
6654
def is_strong_password(password: str, min_length: int = 8) -> bool:
6755
"""
6856
This will check whether a given password is strong or not. The password must be at

0 commit comments

Comments
 (0)