
Python
张博08yes
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Exception hierarchy (异常继承关系)
Exception hierarchy (异常继承关系)###########################################################################BaseException (基本异常) +-- SystemExit (系统退出) +-- KeyboardInterrupt (键盘中断) +-- GeneratorExit (生...原创 2019-12-23 05:03:56 · 247 阅读 · 0 评论 -
random in Python
import random# 0-1 浮点数random.random()# 0-10 整数(包括0和100)random.randint(1, 100)# 1.2-2.5 浮点数random.uniform(1.2, 2.5)# 0-100 间隔5整数random.randrange(0, 100, 5)# apple 中随机取一个元素random.choice('...原创 2019-11-28 12:27:37 · 262 阅读 · 0 评论