A、seating
B、seat
C、seated
D、seated themselves
第1题:
A.some / a
B.an / some
C.some / some
第2题:
第3题:
下列 Python语句的运行结果为 for i in range (3): print(i, end='') for i in range(2, 5): print(i, end='')
第4题:
A. would have seen
B. would see
C. have seen
D. saw
第5题:
下面程序的输出结果是: i=0 while i<10: i += 1 if i == 7: continue else: print(i,end=' ')
第6题:
下列选项中,能找出三位数中,所有个位数字是9并且是3的倍数的数的代码是()。
A.for i in range(100,1000): if i%10=9 and i%3=0: print(i,end=' ')
B.for i in range(100,1000): if i//10==9 and i//3==0: print(i,end=' ')
C.for i in range(100,1000): if i%10==9 and i%3==0: print(i,end=' ')
D.for i in range(100,1000): if i%10==9 and i%3==0: print(i,end=' ')