python第一篇 条件循环小练习
Posted holdononedream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python第一篇 条件循环小练习相关的知识,希望对你有一定的参考价值。
输出1 2 3 4 5 6 8 9 10
#!/bin/usr/env python n = 1; while n<11: if n == 7: pass else: print(n) n = n+1 print("---end---")
输出1-100内的奇数
#!/bin/usr/env python n = 1; while n<101: if n % 2 == 0: pass else: print(n) n = n+1 print("---end---")
或
#!/bin/usr/env python n = 1; while n<101: print(n) n = n+2 print("---end---")
求1-100的和
#!/bin/usr/env python n = 1 s = 0 while n<101: s += n n = n + 1 print(s) print("---end---")
求1-2+3...-100的值
#!/bin/usr/env python n = 1 s = 0 while n<101: if n%2==0: s -= n else: s += n n = n + 1 print(s) print("---end---")
用户登录三次机会重试
#!/bin/usr/env python count = 1 while count < 4: first = input("输入密码:") if first == "root": print("输入正确") break; else: count = count + 1 if count == 4: print("输入超过三次") break; print("---end---")
以上是关于python第一篇 条件循环小练习的主要内容,如果未能解决你的问题,请参考以下文章
趁着课余时间学点Python真的花点课余时间就能理解的分支控制语句