我对 Python 还是很陌生,使用 Pandas,在调试 Python 脚本时遇到了一些问题。
我收到以下警告消息:
[...]\pandas\core\index.py:756: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
return self._engine.get_loc(key)
并且找不到它的来源。
经过一番研究,我尝试在 Pandas lib 文件 (index.py) 中执行此操作:
try:
return self._engine.get_loc(key)
except UnicodeWarning:
warnings.warn('Oh Non', stacklevel=2)
但这并没有改变警告消息的任何内容。