def l_sum1(k):
a = 0
b = 0
while k <= 100:
a += b
b += 1
return a
print(l_sum1(100))
#while 怎么跑不出来结果
你的变量K没有递增啊,正确代码如下
while b <= k: