Python for循环 _ 找出不正常体温

Python for循环 _ 找出不正常体温
total = 0
#range(1,101) 其实是加到100,不会加到101
for i in range (1,101):
total = total + i
print("\n" + str(total))