python之循环
Posted 测试情报局
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之循环相关的知识,希望对你有一定的参考价值。
python的循环
1、for循环
方法:
1 for i in range(3): 2 print(i)
打印结果:
0
1
2
使用for...in range(x)进行循环测试:
实例
1 input_name = input("name:") 2 input_passwd = input("password:") 3 counter = 0 4 for i in range(3): 5 if input_name == "solo" and input_passwd == "123" : 6 print("welcome to login") 7 else: 8 print("ERROR!") 9 counter += 1
2、if....else..循环
if 条件成立: print() else: print()
还有插入elif的
if 条件成立: print() elif 条件1: print() elif 条件2: print() else: print()
3、while循环
while 条件成立: print()
中断:break、continue
break:跳出整个循环
continue:跳出当前循环,进入下一个循环
1 if 条件成立: 2 print() 3 break #跳出整个循环 4 else: 5 print()
1 for i in range(3): 2 continue 3 print(i)
4、循环的嵌套
1 for i in range(3): 2 if input_name == "solo" and input_passwd == "123" : 3 print("welcome to login") 4 5 elif input_name == "admin" and input_passwd == "abcd123" 6 print("Administrator login") 7 8 else: 9 print("Logain Error!") 10 counter += 1
以上是关于python之循环的主要内容,如果未能解决你的问题,请参考以下文章