'''可以这么写简单一些,但有个问题就是每输入一个数要回车 sum = 0 while(1):num = int(input())if num > 0:sum += num else:break print(sum)'''Python要注意缩进