将“ for循环”更改为“ while循环”

时间:2018-10-13 07:44:59

标签: python

想知道如何将以下for循环更改为while循环。

虽然输出相同。

for i in range(0,20, 4):
     print(i)

4 个答案:

答案 0 :(得分:1)

就这么简单:

i = 0
while i < 20:
    print(i)
    i += 4

答案 1 :(得分:1)

i = 0
while i < 20:
    print(i)
    i += 4

答案 2 :(得分:0)

会是这样的:

i = 1
while i < 20:
  print(i)
  i += 4

您也可以访问此处以获取更多信息: https://www.w3schools.com/python/python_while_loops.asp

答案 3 :(得分:0)

i=0
while(i<5):
    print(4*i)
    i+=1