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

以下哪项可以表示无限循环?

Awhile True: print('Hello')
Bwhile 1: print('Hello')
Cwhile (i > 0): print(i); i -= 1
D以上都不是