摘要: Python程序if语句指定任何非0和非空(null)值为true,0 或者 null为false。 阅读全文
posted @ 2018-05-31 11:37 章豹 阅读(80) 评论(0) 推荐(0) 编辑
摘要: a,b = 0,1while b <10: print(b) a,b = b,a+b #先执行右边的计算,并且按照未修改后的值进行计算print(" ")a,b = 0,1while b < 10: print(b) k = b b = a+b a = k 阅读全文
posted @ 2018-05-31 11:37 章豹 阅读(95) 评论(0) 推荐(0) 编辑