python-while循环

while简单示例:

sum = 0
i = 0
while i < 100:
    i+=1
    sum += i
print(sum)
原文地址:https://www.cnblogs.com/e0yu/p/9282216.html