将下面Python代码中的 range(100) 修改为 range(1,100),其输出与当前代码输出相同。()
>cnt = 0 for i in range(100): cnt += i print(cnt)
正确
错误