Type of an underscore character in Python
本问题已经有最佳答案,请猛点这里访问。
我在用python玩
1 2 | >>> type(_) <type 'type'> |
下划线(u)字符的"类型"是
在Python解释器是一个特殊的变量,
例如,
1 2 3 4 5 6 7 8 9 10 | >>> type(_) Traceback (most recent call last): File"<stdin>", line 1, in <module> NameError: name '_' is not defined >>> 1 1 >>> type(_) <type 'int'> >>> type(_) <type 'type'> |