3. 从字典创建 Series 结果: a 1 b 2 c 3 d 4 e 5
时间: 2024-03-05 16:50:44 浏览: 65
禾川X3E伺服驱动器CANopen-EtherCAT用户手册(20190508)(1).pdf
3星 · 编辑精心推荐
好的,以下是回答:
```python
import pandas as pd
# 创建字典
my_dict = {'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5}
# 从字典创建 Series
my_series = pd.Series(my_dict)
# 输出结果
print(my_series)
```
输出结果为:
```
a 1
b 2
c 3
d 4
e 5
dtype: int64
```
可以看到,从字典创建 Series 时,字典的键被用作 Series 对象的索引。
阅读全文