gpt4 book ai didi

python - 为什么将列表与整数进行比较不会出错?

转载 作者:行者123 更新时间:2023-12-04 08:45:38 25 4
gpt4 key购买 nike

在以下示例中,print语句使用输出“test”进行评估。

x = [3]
if x != 3:
print("test")
但我不明白这是如何工作的。是值 x分配给列表的地址 [3]因此 x != 3计算结果为 True ?因为我的直觉告诉我应该得到一个 Error在这里,因为您无法比较 listint .

最佳答案

Comparisons 上的 Python 文档部分声明:

Objects of different types, except different numeric types, never compare equal. The == operator is always defined but for some object types (for example, class objects) is equivalent to is. The <, <=, > and >= operators are only defined where they make sense; for example, they raise a TypeError exception when one of the arguments is a complex number.


因此,Python 会让你使用 ==!=在任何两种类型之间,但在比较 list 的情况下到一个整数,他们永远不会比较相等。

关于python - 为什么将列表与整数进行比较不会出错?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64342718/

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