python如何提取数据框某一列数据
时间: 2023-09-26 09:14:19 浏览: 200
python提取具有某种特定字符串的行数据方法
5星 · 资源好评率100%
你可以使用 Pandas 库中的 iloc 或 loc 方法来提取数据框某一列数据,例如:
```python
import pandas as pd
# 创建数据框
data = {'Name': ['Tom', 'Jack', 'Steve', 'Ricky'],
'Age': [28, 34, 29, 42],
'City': ['Beijing', 'Shanghai', 'Guangzhou', 'Shenzhen']}
df = pd.DataFrame(data)
# 使用 iloc 方法提取 Age 列数据
age = df.iloc[:, 1]
print(age)
# 使用 loc 方法提取 City 列数据
city = df.loc[:, 'City']
print(city)
```
输出结果:
```
0 28
1 34
2 29
3 42
Name: Age, dtype: int64
0 Beijing
1 Shanghai
2 Guangzhou
3 Shenzhen
Name: City, dtype: object
```
阅读全文