判断dataframe中的第一个元素,如果是数字,则输出yes
时间: 2024-01-02 20:03:27 浏览: 121
pandas中遍历dataframe的每一个元素的实现
可以使用pandas中的iloc函数来获取dataframe中的第一个元素,然后使用isnumeric()函数判断是否为数字,最后根据判断结果输出yes或者no。以下是示例代码:
```python
import pandas as pd
# 假设有一个名为df的dataframe
if str(df.iloc[0, 0]).isnumeric():
print("yes")
else:
print("no")
```
阅读全文