2019年6月28日
摘要: 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 阅读(3456) 评论(0) 推荐(0) 编辑