返回列表 發帖
sum=0
b=1
while(b<=10):
    sum+=b
    b+=1
print("1+2+3+4+5+6+7+8+9+10={}".format(sum))

TOP

返回列表