第一部分:选择题 1、Python L8 (15分) 运行下面程序,输出的结果是( )。 i = 2 while i < 5: print(i, end = ' ') i += 1 2 3 4 5 6 1 2 3 4 5 2 3 4 3 4 5 正确答案:C 2、Python L8 (