知识点:Python 3/10(单选) What is the outpu...
发布于 2022-03-03 17:31:00
知识点:Python 3/10(单选)
What is the output of the following?
i = 0
while i < 5:
print(i)
i += 1
if i == 3:
break
else:
print(0)
What is the output of the following?
i = 0
while i < 5:
print(i)
i += 1
if i == 3:
break
else:
print(0)
登录后免费查看答案
关注者
0
被浏览
12