Python中的if和while

Posted

tags:

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

if 判断

if形式有三种:

1、if ... 

2、if ... else ...

3、if ... elif ... else ...

实例:

技术分享
1 inp = raw_input(>>>)
2 if inp==1:
3     print 111
4 elif inp ==2:
5     print 222
6 else:
7     print ...
code

注意:缩进为四个空格或一个Tab键

while循环

格式: 

1 while 条件:
2   # 循环体
3     # 条件为真的话,执行循环体
4     # 条件为假的话,跳出循环

break

break用于退出所有循环

例子:

技术分享
1 n1=1
2 while n1 < 3:
3     if n1 ==2:
4         break
5     n1=n1+1
6 print n1,break
View Code

输出结果:

  2 break

continue

continue用于退出本次循环,继续本次循环

技术分享
1 n1=1
2 while n1<=3:
3     print 123
4     n1 = n1 + 1
5     continue
6     print 456
View Code

输出结果:

123
123
123

 

 

 

    



以上是关于Python中的if和while的主要内容,如果未能解决你的问题,请参考以下文章

Python中的if,while,for

Python中的if和while

python中的while循环与for循环怎么样那个比较好用?

“if”和“while”循环中的“continue”关键字

python流程控制while和if

Python中的if else 和while else的用法