语言要求Python。利用随机函数产生四个字符(字母和数字)作为验证码,要求:至少有一个大写宇母、 一个数字,不考虑顺序。编程输出这四个宇符。
时间: 2023-03-31 18:00:43 浏览: 92
使用python生成验证码
我可以回答这个问题。以下是 Python 代码实现:
```python
import random
import string
# 生成包含大写字母和数字的随机验证码
while True:
code = ''.join(random.sample(string.ascii_uppercase + string.digits, 4))
if any(c.isupper() for c in code) and any(c.isdigit() for c in code):
break
print(code)
```
输出结果类似于:`A2B9`。
阅读全文