首页题库练习题目详情
Python程序设计单选题中等

以下while循环的执行次数为多少?i = 0; while i < 5: print(i); i += 1

A5次
B4次
C6次
D0次