在 python 中,运行下列程序,正确的结果是()。
s =0
for i in range(1,5):
s = s+i
print('i=',i,'s=',s)
i=4 s=10
i=5 s=10
i=5 s=15
i=6 s=15