用python写一个随机密码生成
时间: 2023-05-16 15:06:43 浏览: 246
Python生成随机密码的方法
的函数,密码长度为8位,包含大小写字母和数字。
可以使用Python内置的random和string模块来生成随机密码,代码如下:
```python
import random
import string
def generate_password(length=8):
# 定义密码字符集
chars = string.ascii_letters + string.digits
# 生成随机密码
password = ''.join(random.choice(chars) for _ in range(length))
return password
# 测试
print(generate_password())
```
这个函数会生成一个包含大小写字母和数字的8位随机密码。如果需要生成不同长度的密码,可以修改length参数的值。
阅读全文