摘要: 模块-随机数模块 In [72]: random.random() Out[72]: 0.2341082458388667 In [78]: random.randint(1,10) Out[78]: 10 In [80]: random.randrange(1,5) Out[80]: 2 In [87]: random.choice([1,2,3]) Out[87]: 1 三... 阅读全文
posted @ 2017-10-24 23:20 两只老虎111 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 模块-时间模块 导入: import time方法: _STRUCT_TM_ITEMS __doc__ __loader__ __name__ __package__ __spec__ altzone asctime clock ctime daylight get_clock_info gmtime localtime mktime... 阅读全文
posted @ 2017-10-24 23:03 两只老虎111 阅读(346) 评论(0) 推荐(0) 编辑
摘要: 模块-时间模块 导入: import time方法: _STRUCT_TM_ITEMS __doc__ __loader__ __name__ __package__ __spec__ altzone asctime clock ctime daylight get_clock_info gmtime localtime mktime... 阅读全文
posted @ 2017-10-24 22:34 两只老虎111 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 迭代器与生成器: 列表生成器: 生成一个列表,可参考: http://www.cnblogs.com/ywhyme/p/7382132.html 普通 [x+1 for x in range(2,10,2)]与函数一起使用 In [68]: def f(x): ...: return x**x In [69]: [f(x) for x in range(2,10,2)... 阅读全文
posted @ 2017-10-24 21:22 两只老虎111 阅读(237) 评论(0) 推荐(0) 编辑