python pandas如何查找某一列
时间: 2023-06-14 19:04:47 浏览: 95
你可以使用 Pandas 中的 `loc` 方法来查找某一列。下面是一个示例代码:
```python
import pandas as pd
# 创建一个示例数据
data = {"name": ["Alice", "Bob", "Charlie"], "age": [25, 30, 35]}
df = pd.DataFrame(data)
# 使用 loc 方法查找某一列
age_column = df.loc[:, "age"]
print(age_column)
```
在上面的代码中,我们首先创建了一个示例数据,然后使用 `loc` 方法查找了名为 "age" 的列,并将其赋值给了 `age_column` 变量。最后,我们打印了 `age_column` 变量的值。
阅读全文