执行下方的程序,输出的是?( )
n = 1
ls = []
for i in range(7):
ls.append(n)
n = n + 2
total = 0
for j in ls:
total = total + j
print(total)
28
49
7
105