运行代码,输出的数字是?()
ages = [12, 15, 9, 18, 7] for n in ages: if n < 10: print(n, end=" ")
12 15 18
9 7
12
18