摘要:
import random# 生成随机验证码# 数字验证码check_code = ''for i in range(4): current = random.randint(1, 9) check_code += str(current)print(check_code)# 随机字母+数字验证码c 阅读全文
posted @ 2019-06-28 17:29
Yihan_07
阅读(3505)
评论(0)
推荐(0)
浙公网安备 33010602011771号