python初学者-计算1-99奇数的和

s = 0
for i in range(1,100,2):
   s = s + i
print(s)
原文地址:https://www.cnblogs.com/wang-yongxu/p/12544037.html