2019年5月4日
摘要: count=0 while countnot>and>or print(3>4 or 42) #T print(2 > 1 and 3 5 and 2 2 and 3 5 and 2 > 1 or 9 1 and 3 5 and 2 > 1 and 9 > 8 or 7 1 and 3 5 and 2 > 1 and 9 > 8 or 7 2 and 3) #false prin... 阅读全文
posted @ 2019-05-04 19:05 orange小橘子 阅读(203) 评论(0) 推荐(0) 编辑
摘要: #1.while使用while循环输入1 2 3 4 5 6 8 9 10 '''count = 0 while count<10: count += 1 if count == 7: continue else: print(count)''' #2.while求1-100的和 '''count=1 sum=0 while count... 阅读全文
posted @ 2019-05-04 11:41 orange小橘子 阅读(140) 评论(0) 推荐(0) 编辑