运行以下python代码,请输出运算结果?( )
x = 1 while x < 100: if x % 3 != 0: print(x, end=',') elif x // 10: break x += 2 print(x)
1
3,9,11
3,6,9,10
1,5,7,11,13,15