编写一个随机密码生成器
时间: 2024-03-05 16:50:44 浏览: 170
随机密码生成器
好的,以下是一个简单的Python程序,用于生成随机密码:
```python
import random
import string
# 定义密码长度
password_length = 12
# 定义密码可能包含的字符集
characters = string.ascii_letters + string.digits + string.punctuation
# 生成随机密码
password = ''.join(random.choice(characters) for i in range(password_length))
# 输出密码
print(password)
```
该程序使用了Python内置的`random`和`string`模块,生成包含大小写字母、数字和标点符号的12位随机密码。您可以根据需要修改密码长度和字符集。
阅读全文