看过来
《pandas 教程》 持续更新中,提供建议、纠错、催更等加作者微信: gairuo123(备注:pandas教程)和关注公众号「盖若」ID: gairuo。跟作者学习,请进入 Python学习课程。欢迎关注作者出版的书籍:《深入浅出Pandas》 和 《Python之光》。
(编码题)有一个名为 ser 的 Series,需求查询其部分内容(即 ser 的 子集)。
import pandas as pd
ser = pd.Series([*'97625313'], index=[*'abcdefgh'])
ser
'''
a 9
b 7
c 6
d 2
e 5
f 3
g 1
h 3
dtype: object
'''
Python 代码如下
# 查询仅有标签 e 的数据(注意,返回的是一个值的 Series)
ser[['e']]
'''
e 5
dtype: object
'''
# 查询标签 d、f、b 的数据(以此标签为顺序)
ser[['d', 'f', 'b']]
'''
d 2
f 3
b 7
dtype: object
'''
# 查询标签 c 到 g 的数据
ser['c':'g']
'''
c 6
d 2
e 5
f 3
g 1
dtype: object
'''
# 查询标签 d 及之前的数据
ser[:'d']
'''
a 9
b 7
c 6
d 2
dtype: object
'''
# 查询 d 及之前每两个选择一个的数据
ser[:'d':2]
'''
a 9
c 6
dtype: object
'''
# 查询 Series 的所有数据
ser[:]
ser[::]
ser[...]
ser[Ellipsis] # 同上
'''
a 9
b 7
c 6
d 2
e 5
f 3
g 1
h 3
dtype: object
'''
查看相关链接中的知识。
(完)
更新时间:2024-03-18 11:21:36 标签:pandas python 习题 series 查询