代码输出的星火序列是?()
lst = [] for i in range(1,10): if i%3==0 and i%2!=0: lst.append(i) print(lst)
[3,6,9]
[3,9]
[6]
[9]