Python的流程控制 - while

简介: while与for相比for循环用在有次数的循环上。while循环用在有条件的控制上,和 if 比较相似。while循环,直到表达式变为假(或者有一个break),才退出while循环,表达式是一个逻辑表达式,必须返回一个True或False。

while与for相比

for循环用在有次数的循环上。

while循环用在有条件的控制上,和 if 比较相似。

while循环,直到表达式变为假(或者有一个break),才退出while循环,表达式是一个逻辑表达式,必须返回一个True或False。语法如下:

while expression:
    statement(s)

现在我们写一个while循环,让用户输入指定字符退出,如下所示:

#!/usr/local/python3/bin/python

x=''
while x != 'q':
    print('hello')
    x=input("Please input something like q for quit :")
    if not x:
        break
    if x=='quit':
        continue
    print("Please continue.")

else:
    print("world")

运行的测试结果如下:

[root@izj6cdhdoq5a5z7lfkmaeaz ~]# python whileE.py
hello
Please input something like q for quit :e
Please continue.
hello
Please input something like q for quit :re
Please continue.
hello
Please input something like q for quit :quit
hello
Please input something like q for quit :q
Please continue.
world
[root@izj6cdhdoq5a5z7lfkmaeaz ~]#
目录
相关文章
|
6月前
|
人工智能 数据挖掘 Python
Python基础语法与流程控制
Python基础语法与流程控制
45 1
|
6月前
|
存储 Python
python基础篇: python中的流程控制,你都了解吗?
python基础篇: python中的流程控制,你都了解吗?
86 3
|
6月前
|
程序员 索引 Python
Python 流程控制
Python 流程控制
40 0
|
6月前
|
Python
Python流程控制
Python流程控制
|
6月前
|
程序员 Python
Python中的流程控制
Python中的流程控制
35 0
Python中的流程控制
|
索引 Python
python流程控制
python流程控制
85 0
|
机器学习/深度学习 Python 算法
Python第3章 流程控制(三)
Python第3章 流程控制
1599 1
|
Python
Python第3章 流程控制(二)
Python第3章 流程控制