生成一个pandas.core.series.Series有两列
时间: 2024-05-02 13:16:32 浏览: 160
python pandas.DataFrame.loc函数使用详解
可以使用pandas库中的DataFrame构造函数来创建一个有两列的Series对象,然后再将其中一列转换为Series对象即可。以下是示例代码:
```python
import pandas as pd
# 创建一个DataFrame对象
df = pd.DataFrame({'col1': [1, 2, 3], 'col2': ['a', 'b', 'c']})
# 将其中一列转换为Series对象
series = df['col1']
print(series)
```
输出结果:
```
0 1
1 2
2 3
Name: col1, dtype: int64
```
阅读全文