gpt4 book ai didi

python - Python 3 中的最大元组数组大小是多少?

转载 作者:行者123 更新时间:2023-11-28 22:20:34 25 4
gpt4 key购买 nike

我正在构建一个网络抓取工具,将从四个不同网站检索到的数据存储到一个元组数组中。我稍后遍历元组并将整个批处理保存为 CSV 和 Excel。元组数组或一般数组是否受限于处理器的 RAM/磁盘空间?

谢谢

最佳答案

根据doc ,这是由 sys.maxsize

给出的

sys.maxsize

An integer giving the maximum value a variable of type Py_ssize_t can take. It’s usually 2**31 - 1 on a 32-bit platform and 2**63 - 1 on a 64-bit platform.

有趣的是,这个关于数据模型的 Python3 文档在 object.__len__ 下提供了更多实现细节.

CPython implementation detail: In CPython, the length is required to be at most sys.maxsize. If the length is larger than sys.maxsize some features (such as len()) may raise OverflowError.

关于python - Python 3 中的最大元组数组大小是多少?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48848335/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com