我在 Python3上使用熊猫 0.19.1
。我收到了这些代码行的警告。我试图获得一个列表,其中包含字符串 Peter
出现在 Unnamed: 5
列中的所有行号。
df = pd.read_excel(xls_path)
myRows = df[df['Unnamed: 5'] == 'Peter'].index.tolist()
它会发出警告:
"\Python36\lib\site-packages\pandas\core\ops.py:792: FutureWarning: elementwise
comparison failed; returning scalar, but in the future will perform
elementwise comparison
result = getattr(x, name)(y)"
这个未来警告是什么,我应该忽略它,因为它似乎工作。