标签:for 循环 += bsp display 计算 int hid hide col
计算 1~100 的和 5050
while 循环:
i, s = 0, 0
while i < 101:
s += i
i += 1
print(s)
for 循环:
s = 0 for i in range(101): s += i print(s)
标签:for 循环 += bsp display 计算 int hid hide col
原文地址:https://www.cnblogs.com/shanger/p/12180784.html