gpt4 book ai didi

python - 在 Python 中强制复制一个小 int

转载 作者:行者123 更新时间:2023-12-02 07:07:39 26 4
gpt4 key购买 nike

作为一个玩具问题,我尝试提出对象a, b,使得

type(a) == type(b) == int # True
a + 1 == b + 1 == 1 # True
a is b # False

看起来deepcopy依赖于_deepcopy_atomic,正如所讨论的here .

是否可以在 Python 中创建小 int 的副本?

最佳答案

是的,这是可能的,并且无需低级黑客或作弊:

>>> a = 0
>>> b = 9**99 % 9**99
>>> type(a) == type(b) == int
True
>>> a + 1 == b + 1 == 1
True
>>> a is b
False

我在本地使用 Python 3.8.1 执行此操作,但您也可以重现它 at repl.it并在 www.python.org/shell/ .

对于小的积极因素:

>>> a = 7
>>> b = (9**99 + a) % 9**99
>>> b, type(b), a == b, a is b
(7, <class 'int'>, True, False)

对于小负片:

>>> a = -2
>>> b = (9**99 + a) % -9**99
>>> b, type(b), a == b, a is b
(-2, <class 'int'>, True, False)

关于python - 在 Python 中强制复制一个小 int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60500174/

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