for i in (1,2,3,4,5,6,7,8,9,10):
if i==4:
continue
print(i,end=",")
以上程序运行的结果是?( )
1,2,3,4,5,6,7,8,9,10
1,2,3,5,6,7,8,9,10
1,2,3
1,2,3,5,6,7,8,9,10,