我是python的新手,经常使用REPL检查一些代码段。
我试图仅根据元组中的第一个值检查集合中是否包含元组。知道python中的_
是pass
的意思,我写了这样的话:
Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:06:47) [MSC v.1914 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> x = {('a',1),('b',2)}
>>> x
{('b', 2), ('a', 1)}
>>> ('a',_) in x
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unhashable type: 'set'
>>> ('a',1) in x
True
>>> ('a',_) in x
True
因此,您可以看到第一个('a',_) in x
语句产生了TypeError
,但是下一个给出了没有错误的输出。
有人可以解释一下这里发生了什么吗?
答案 0 :(得分:0)
_
设置为repl返回的最后一个非None
结果。因此,>>> ('a',_) in x
与>>> ('a', True) in x
相同。还请注意,True
是Python中1
的特例。