对于以下程序
def sum_naturals(n):
total, k = 0, 1
while k <= n:
total, k = total + k, k + 1
return total
sum_naturals(5000000000000000000000)
从过去的 20 分钟开始,我正在等待处理器 intel t1400 1.83 ghz 的输出。
我的问题是,
python如何处理这么大的数据,因为我的处理器只有32位寄存器?C程序会很早就给出错误?
假