摘要: #随机生成4位数字的验证码 # import random # # checkcode='' # # for i in range(4): # current=random.randint(1,9) # checkcode+=str(current) # print(checkcode) #随机生成4位字母和数字组合的验证码 import random checkcode=... 阅读全文
posted @ 2017-12-25 13:48 Py小白 阅读(887) 评论(0) 推荐(0) 编辑