摘要: 一、random模块 1 import random 2 def code(n): 3 res = "" 4 for i in range(n): 5 a = random.randint(0,9) 6 b = chr(random.randint(65,90)) 7 res +=str(rando 阅读全文
posted @ 2018-01-17 20:50 n1ghtwatcher 阅读(168) 评论(0) 推荐(0) 编辑