Menu
×
×
正确
i = 1
while i < 6:
print(i)
i += 1
@(5)
print("i is no longer less than 6")
i = 1
while i < 6:
print(i)
i += 1
else:
print("i is no longer less than 6")
不正确
点击 此处 重试 正确
下一题 ❯i = 1 while i < 6: print(i) i += 1w3exercise_input_no_0print("i is no longer less than 6") |