()
| 81 | |
| 82 | |
| 83 | def main(): |
| 84 | length = int(input("Please indicate the max length of your password: ").strip()) |
| 85 | chars_incl = input( |
| 86 | "Please indicate the characters that must be in your password: " |
| 87 | ).strip() |
| 88 | print("Password generated:", password_generator(length)) |
| 89 | print( |
| 90 | "Alternative Password generated:", |
| 91 | alternative_password_generator(chars_incl, length), |
| 92 | ) |
| 93 | print("[If you are thinking of using this password, You better save it.]") |
| 94 | |
| 95 | |
| 96 | if __name__ == "__main__": |
no test coverage detected