正整数和显示负整数

时间:2017-11-07 13:59:47

标签: python

我知道如何从用户输入的内容中选择正整数或负整数。

我已经完成了一个代码,可以识别整数是正还是负 - 主要问题是,不是将负整数加到负总和中,而是从正整数和中取出。

拜托,有人可以帮我解决这个小错误吗?

Num = 0
positive_Total = 0
negative_Total = 0
total=0
positive = 0
negative = 0
Sum_Positive=0
Sum_Negative=0

for Num in range(10):
    total+=int(input("Please enter a integer:"))
    if Num >=0:
        Sum_Positive =+total
    if Num < 0:
        Sum_Negative = +total

print("Sum of Positive Integers:"+str(Sum_Positive))
print("Sum of Negative Integers:"+str(Sum_Negative))

image of code in editor

0 个答案:

没有答案