看过来
《pandas 教程》 持续更新中,提供建议、纠错、催更等加作者微信: gairuo123(备注:pandas教程)和关注公众号「盖若」ID: gairuo。跟作者学习,请进入 Python学习课程。欢迎关注作者出版的书籍:《深入浅出Pandas》 和 《Python之光》。
(编码题)以下有一个名为 ser 的 Series,需要获取它的以下信息:
import pandas as pd
ser = pd.Series([1, 2, 3, 4],
index=['a', 'b', 'c', 'd'],
name='age',
dtype='float'
)
Python 代码如下:
ser.index # 索引
# Index(['a', 'b', 'c', 'd'], dtype='object')
ser.values # 值
# array([1., 2., 3., 4.])
ser.name # 名称
# 'age'
ser.dtype # 数据类型
# dtype('float64')
type(ser.dtype) # 类型
# numpy.dtype[float64]
ser.size # 长度
len(ser)
# 4
查看相关链接中的知识。
(完)
更新时间:2024-03-16 16:55:49 标签:pandas python 习题 series 属性