想知道如何将以下for循环更改为while循环。
虽然输出相同。
for i in range(0,20, 4):
print(i)
答案 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