第21649题 单选
给定Python列表numbers遍历筛选代码,运行后的输出结果是?
numbers = [3,7,2,15,9,12]
for n in numbers:
    if n < 8:
        print(n)
A

3 7 2

B

7

C

3

D

2