a=[] for i in range(2,10): count=0 for x in range(2,i-1): if i%x==0: count+=1 if count==0: a.append() print() 代码输出的结果是()
A. [2,3,5,7]
B. [3,5,7,9]
C. [2,4,6,8]
D. [2,3,4,5,6,7,8,9]
for w in “python”: if w==”o”: continue print(w,end=””) 下面的代码输出的结果是()
A. pyth
B. pythn
C. yth
D. python