E:\PycharmProjectFile\Python_shixun\PythonProjec022.py:43: FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison if id in df['id'].values:
时间: 2024-02-15 17:03:38 浏览: 48
echarts_shixun(1)(1).rar
这个警告是因为 Pandas 的版本升级导致的,不影响程序的运行,可以忽略。如果想要避免这个警告,可以将 if 语句改为:
```python
if id in df['id'].tolist():
```
这样就可以避免这个警告了。
阅读全文