mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 01:09:40 +08:00
[pre-commit.ci] pre-commit autoupdate (#9543)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.0.291 → v0.0.292](https://github.com/astral-sh/ruff-pre-commit/compare/v0.0.291...v0.0.292) - [github.com/codespell-project/codespell: v2.2.5 → v2.2.6](https://github.com/codespell-project/codespell/compare/v2.2.5...v2.2.6) - [github.com/tox-dev/pyproject-fmt: 1.1.0 → 1.2.0](https://github.com/tox-dev/pyproject-fmt/compare/1.1.0...1.2.0) * updating DIRECTORY.md * Fix typos in test_min_spanning_tree_prim.py * Fix typos * codespell --ignore-words-list=manuel --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Co-authored-by: Tianyi Zheng <tianyizheng02@gmail.com> Co-authored-by: Christian Clauss <cclauss@me.com>
This commit is contained in:
![66853113+pre-commit-ci[bot]@users.noreply.github.com](/assets/img/avatar_default.png)
committed by
GitHub

parent
60291738d2
commit
895dffb412
@ -63,11 +63,12 @@ def random_characters(chars_incl, i):
|
||||
pass # Put your code here...
|
||||
|
||||
|
||||
# This Will Check Whether A Given Password Is Strong Or Not
|
||||
# It Follows The Rule that Length Of Password Should Be At Least 8 Characters
|
||||
# And At Least 1 Lower, 1 Upper, 1 Number And 1 Special Character
|
||||
def is_strong_password(password: str, min_length: int = 8) -> bool:
|
||||
"""
|
||||
This will check whether a given password is strong or not. The password must be at
|
||||
least as long as the provided minimum length, and it must contain at least 1
|
||||
lowercase letter, 1 uppercase letter, 1 number and 1 special character.
|
||||
|
||||
>>> is_strong_password('Hwea7$2!')
|
||||
True
|
||||
>>> is_strong_password('Sh0r1')
|
||||
@ -81,7 +82,6 @@ def is_strong_password(password: str, min_length: int = 8) -> bool:
|
||||
"""
|
||||
|
||||
if len(password) < min_length:
|
||||
# Your Password must be at least 8 characters long
|
||||
return False
|
||||
|
||||
upper = any(char in ascii_uppercase for char in password)
|
||||
@ -90,8 +90,6 @@ def is_strong_password(password: str, min_length: int = 8) -> bool:
|
||||
spec_char = any(char in punctuation for char in password)
|
||||
|
||||
return upper and lower and num and spec_char
|
||||
# Passwords should contain UPPERCASE, lowerase
|
||||
# numbers, and special characters
|
||||
|
||||
|
||||
def main():
|
||||
@ -104,7 +102,7 @@ def main():
|
||||
"Alternative Password generated:",
|
||||
alternative_password_generator(chars_incl, length),
|
||||
)
|
||||
print("[If you are thinking of using this passsword, You better save it.]")
|
||||
print("[If you are thinking of using this password, You better save it.]")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
Reference in New Issue
Block a user