python常见模块 分两篇分别介绍下述模块 time模块 random模块 hashlib模块 os模块 sys模块 logging模块 序列号模块 configparser模块 re模块 time模块 在python中,通常有这三种方式来表示时间:时间戳、元组(struct_time)、格式化的 ...
分类:
编程语言 时间:
2017-06-26 21:23:33
阅读次数:
188
import random checkcode = '' for i in range(4): if i == random.randint(0,3): current = chr(random.randrange(65,90)) checkcode += str(current) else: ch ...
分类:
编程语言 时间:
2017-06-25 10:19:12
阅读次数:
155
time 模块: 转成时间戳: 将时间戳转成格式化字符串: 另外还有一个固定格式的字符串转化: random模块: , ...
分类:
编程语言 时间:
2017-06-21 23:11:10
阅读次数:
353
转载:http://blog.csdn.net/claroja/article/details/70229758 ...
分类:
其他好文 时间:
2017-06-21 17:33:38
阅读次数:
121
目录 一. 时间模块 二. random模块 三. os和sys模块 四. shutil模块 五. pickle模块 六. shelve模块 七. xml模块(格式文件操作) 八. hashlib模块 九. subprocess模块 十. configparser模块 十一. 软件开发规范 十二. ...
分类:
编程语言 时间:
2017-06-08 01:28:27
阅读次数:
266
正则模块 常用正则表达式列表(盗图一张:-P) 分割线 时间模块 Random模块 OS模块 sys模块 shutil模块 json模块 pickle模块 shelve模块 xml模块 hashlib模块 subprocess模块 logging模块 configparser模块 软件开发规范示例 ...
分类:
编程语言 时间:
2017-06-08 01:26:26
阅读次数:
219
一、random模块简介Python标准库中的random函数,可以生成随机浮点数、整数、字符串,甚至帮助你随机选择列表序列中的一个元素,打乱一组数据等。二、random模块重要函数1)、random()返回0<=n<1之间的随机实数n;2)、choice(seq)从序列seq中返回随机的元素;3)、getrandb..
分类:
其他好文 时间:
2017-06-07 21:40:07
阅读次数:
168
random模块的作用是产生随机数。之前的小游戏中用到过random中的randint: import random num = random.randint(1,100) random.randint(a, b)可以生成一个a到b间的随机整数,包括a和b。 a、b都必须是整数,且必须b≥a。当等于 ...
分类:
编程语言 时间:
2017-06-07 18:45:01
阅读次数:
160
#random模块 import random list1 = [1,3,5,7,9] #print(random.random()) #0.09736432890033453 #(0,1)----float 大于0且小于1之间的小数 #print(random.randint(1,3)) # 1 ... ...
分类:
其他好文 时间:
2017-06-05 10:21:18
阅读次数:
214
注意while后面的开关用法。 random模块 与 模块中的randint()函数 ...
分类:
其他好文 时间:
2017-06-01 10:32:56
阅读次数:
97