1. 程式人生 > >學習了Python

學習了Python

結果 nbsp int python while for 循環 奇數 count 學會

1 今天看視頻看到裏面的老師講了Python的知識 學會了for循環

for i in range(10):

  i+=3

  print("i")

 循環三次

for 循環還有步長

步長只需一步就可以把奇數偶數 ,得出結果 ,有點神奇。

for i in range(1,10,2):

2 while 循環

count=0

while <10:

  print("count:",count)

  count+=10

  breank

  

學習了Python