python基本if while 语句

Posted yezia

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基本if while 语句相关的知识,希望对你有一定的参考价值。

结果输出 1 2 3 4 5 6 8 9
count = 1 while count < 10: count = count + 1 if count == 7: print(‘‘) else: print(count)


输出0-100内的偶数
n = 1 while n < 101: temp = n % 2 求余 if temp == 0: 余数为0输出结果 print(n) else: 否则pass
        pass
    n = n + 1
 
求1-2+3-4+5-6----99
n = 1 s = 0 while n < 100: temp = n % 2 把余数赋值给temp if temp == 0: s = s - n else: s = s + n n = n + 1 print(s)

 

三次登陆验证
count = 0 while count < 3: user = input(>>>) 用户交换 pwd = input(>>>) if user == alex and pwd == 123: 条件语句 print("欢迎登陆") print("......") break else: print("用户名或者密码错误") count = count + 1

 

 

 

 









以上是关于python基本if while 语句的主要内容,如果未能解决你的问题,请参考以下文章

21天学习python编程_while语句

python基本知识 数据类型 字符串操作 if语句 is not 用法 for循环 while 循环

Python里for和while的区别(74)

SQL Select 语句的用法

python基础,导入模块,if语句,while语句

Python 4 循环语句while