gpt4 book ai didi

python - 为什么我不能直接在 int 对象上调用方法?

转载 作者:太空狗 更新时间:2023-10-30 02:12:52 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
accessing a python int literals methods
Integer literal is an object in Python?

在 python 中,直接在文字上调用方法或查找属性是可能的,有时甚至是常见的:

>>> "-".join("abc")
'a-b-c'
>>> {1: 3, 2: 9}.pop(1)
3
>>> 3j.imag
3.0
>>> 8.0.__add__(8)
16.0

但由于某些原因,这不适用于整数对象:

>>> 3.__add__(42)
File "<stdin>", line 1
3.__add__(42)
^
SyntaxError: invalid syntax

为什么不呢?

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