假设下面Python代码执行过程中仅输入正负整数或0,有关说法错误的是( )。
1 Sum = 0 2 N = int(input()) 3 while N: 4 Sum += N 5 N = int(input()) 6 print(Sum)
执行上面代码将陷入死循环,可将while N: 改为while N==0: