Python入門(四) 循環語句

    Python中提供了while循環與for循環,注意沒有提供do...while循環。
python

    循環控制語句有:
app

1)break:終止當前的循環,並退出整個循環體;oop

2)continue: 終止當前循環,跳出本次循環,執行下一次循環;ui

3)pass:空語句,是爲了保持程序結構的完整性;spa


    1. while循環:
code

while 判斷條件:
    執行語句...
count = 0
while (count < 9):
    print("count = %d「 % count)
    count++
    
print("Exit")
# 無線循環
while True:
    print("while loop")

    2. for循環: 能夠遍歷任何序列的項目,如一個列表或者一個字符串。字符串

for iterating_var in sequence:
    statements(s)
for letter in "hello world":
    print("current letter: ", letter)

for i in range(10):
    print(i)
    
fruits = ['apple', 'banana', 'orange']
for fruit in fruits:
    print(fruit)
相關文章
相關標籤/搜索