1. 程式人生 > >循環和數據的操作命令

循環和數據的操作命令

操作 去重復 數據 while 滿足 print 包含 nbsp pan

while循環的本質就是讓計算機在滿足某一條件的前提下去重復做同一件事情(即while循環為條件循環,包含:1.條件計數循環,2條件無限循環)

1.1計數循環

count=0

while (count < 9):

print(‘the loop is %s‘ %count)

count+=1

1.2無限循環

count=0

while True:

print(‘the loop is %s‘ %count)

count+=1

1.3while與break,continue,else連用

循環和數據的操作命令