下列语句的输出结果是: findChar = 'l' text = 'Hello World' count = 0 for char in text: if findChar == char: count += 1 print(count)
查看答案
for循环中可以使用下列哪些关键字?
A. for
B. while
C. continue
D. break
下列语句的执行结果是10: i = 0 while i < 10: i += 1 print(i)
A. 对
B. 错
下列语句的执行结果是10: i = 0 while i >10: i += 2 print(i)
A. 对
B. 错
for i in range(10)的循环结束后,i的值为10。
A. 对
B. 错