2021年1月24日
摘要: randrange 和 random randrange([start], [stop], [step]) 在从[start, stop),步长为step的整数序列中随机返回一个int型数字 random() 在从[0, 1)中随机返回一个float型数字(17位有效数字) 阅读全文
posted @ 2021-01-24 23:04 摸鱼time 阅读(259) 评论(0) 推荐(0) 编辑
摘要: deadloop之非模态交互界面(模态循环)(哨兵循环) 通过无限循环,条件退出,实现多模态的交互界面 主要功能1:通过键盘按键g\w\r\b进行界面颜色改变,按q退出 主要功能2:点击界面某处生成输入框,回车使输入框内的文字固定在界面 当等待一个特殊的键入时可用,(以return为例) while 阅读全文
posted @ 2021-01-24 16:39 摸鱼time 阅读(238) 评论(0) 推荐(0) 编辑
摘要: bool运算符的行为 操作符 操作定义 x and y 如果x为假,返回x,否则返回y x or y 如果x为真,返回x,否则返回y not x 如果x为假,返回真,否则返回假 例子 a = 1 b = 2 c = a and b print(c) # 2 a = 0 b = 2 c = a and 阅读全文
posted @ 2021-01-24 14:55 摸鱼time 阅读(76) 评论(0) 推荐(0) 编辑