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

python学习网 2020-03-22 22:45:02
s = 0
for i in range(1,100,2):
   s = s + i
print(s)

 

阅读(2489) 评论(0)