为什么Python解释器返回<class 'type of the variable'>的type(_).
<class 'type of the variable'>
type(_)
为什么解释器没有显示错误消息,_但是在它给出的其他特殊字符的情况下SyntaxError.
_
SyntaxError
>>> type(_) <class 'type'> >>> type($) SyntaxError: invalid syntax
python
python ×1