摘要:
import randomcheckcode = ''for i in range(4): current = random.randrange(0,4) if current == i: tmp = chr(random.randint(65,90)) else: tmp = random.ran 阅读全文
摘要:
random模块 一.生成一个随机0-1的随机浮点数: 二.生成一个a到b之间的整数: 三.random.randrange(a,b,c) 四.random.choice与random.sample 五.random.uniform(a,b) 跟random.random()功能一样,只不过这个生成 阅读全文
摘要:
模块的分类: a:标准库(内置模块) b:开源模块 c:自定义模块(实际上就是在写一个python文件) 一:时间模块 :time与datetime timezone:当地时间与UTC之间的时间间隔的时间戳。负数表示比UTC时间晚,比如中国显示-28800,即8个小时,即中国处于东八区,比UTC时间 阅读全文