另一个有趣的项目是生成随机密码的程序。通过以下代码,您可以轻松创建一个强密码:python
import random
import string
def generate_password(length):
characters = string.ascii_letters + string.digits + string.punctuation
password = ''.join(random.choice(characters) for i in range(length))
return password
指定密码长度
password_length = 12
result_password = generate_password(password_length)
print(f"生成的随机密码为:{result_password}")
通过此代码,您可以定制密码的长度,并生成具有足够强度的随机密码。
暂无评论