gpt4 book ai didi

python - 为什么单个元素元组被解释为 python 中的那个元素?

转载 作者:行者123 更新时间:2023-11-28 21:07:59 27 4
gpt4 key购买 nike

谁能解释为什么单元素元组在 Python 中被解释为该元素?

他们为什么不将元组 (1,) 打印为 (1)

请看下面的例子:

>>> (1)
1
>>> ((((1))))
1
>>> print(1,)
1
>>> print((1,))
(1,)

最佳答案

是因为(1)不是元组。 (1)1用括号括起来。正如 python 文档所述

it is the comma, not the parentheses, that define the tuple.

Source

唯一没有逗号的元组是 0 元组,即 () .请注意,您可以通过运行 type((1)) 来检查这一点并看到它返回 <type 'int'>不是<type 'tuple'> .

关于python - 为什么单个元素元组被解释为 python 中的那个元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40710455/

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