import secrets
import string

# Generate a strong password
def generate_strong_password():
    alphabet = string.ascii_letters + string.digits + string.punctuation
    strong_password = ''.join(secrets.choice(alphabet) for _ in range(12))  # You can adjust the length as needed
    return strong_password

# Example strong password
example_password = generate_strong_password()

# Define the list of common passwords (you can extend this list)
common_passwords = [
    'Password123',
    '123456',
    'password',
    'qwerty',
    '123456789',
]

if __name__ == '__main__':
    print(example_password)
