执行下列语句后,其输出结果为: 。 >>> i = 1 >>> while i < 10: if i % 2 == 0: print(i,end=' ') i += 1
举一反三
- 执行下列Python语句后的输出结果是 。 i = -1 while i<0: i *= -1 print(i)
- 执行以下语句,输出结果是() i = 1 while i<0: i*=i print(i) A: 报错 B: 0 C: -1 D: 1
- 执行以下语句,输出结果是() i = -2 while i<0: i*=i print(i) A: 报错 B: 0 C: -1 D: 4
- 下列语句的执行结果是10: i = 0 while i >;10: i += 2 print(i)
- 执行下述代码:for i in range(5): if i <;= 2: i -= 1 print(i,end=',') elif i >; 2: i += 1 print(i,end=',')输出结果为() A: -1,0,1,4,5, B: -1,0,1,4, C: -1,0,4,1,5, D: -1,1,0,5,4,