少說話多寫程式碼之Python學習029——條件語句06(迴圈)
阿新 • • 發佈:2018-11-06
迴圈語句不多解釋了,不管哪種預言中都是基本的語句,Python中有兩種迴圈,while和for,我們一一看一下用法。
while迴圈
使用格式如下,
x=1
while x<=10:
print(x)
x+=1
輸出
1
2
3
4
5
6
7
8
9
10
name=''
while not name:
name= input('請輸入名字:')
print('你好,%s!' %name)
輸出:
請輸入名字:yys 你好,yys!
如果輸入的為空,就一直提示輸入。
for迴圈
使用格式如下,
words=['熊大','熊二','光頭強','李老闆']
for word in words:
print(word)
輸出
熊大
熊二
光頭強
李老闆
numbers=['0','1','2','3','4','5','6']
for num in numbers:
print(num)
輸出
0
1
2
3
4
5
6
for迴圈其實有點像foreach的用法。
這裡介紹一個函式,range函式。可以指定一個數據範圍,比如
numList = range(5) for item in numList: print(item)
輸出
0
1
2
3
4
工程檔案下載:https://download.csdn.net/download/yysyangyangyangshan/10740105