看过来
《pandas 教程》 持续更新中,提供建议、纠错、催更等加作者微信: gairuo123(备注:pandas教程)和关注公众号「盖若」ID: gairuo。跟作者学习,请进入 Python学习课程。欢迎关注作者出版的书籍:《深入浅出Pandas》 和 《Python之光》。
(编码题)有一个名为 ser 的 Series,需要根据以下条件查询数据。
import pandas as pd
ser = pd.Series([*'97625313'],
index=[*'abcdefgh'],
dtype=int)
ser
'''
a 9
b 7
c 6
d 2
e 5
f 3
g 1
h 3
dtype: int64
'''
Python 代码如下:
# 数值等于 3 的数据
ser[ser == 3]
'''
f 3
h 3
dtype: int64
'''
# 数值大于 3 的数据
ser[ser > 3]
'''
a 9
b 7
c 6
e 5
dtype: int64
'''
# 数值不等于 3 的数据
ser[ser != 3]
ser[~(ser == 3)]
'''
a 9
b 7
c 6
d 2
e 5
g 1
dtype: int64
'''
查看相关链接中的知识。
(完)
更新时间:2024-08-10 20:16:06 标签:pandas python 习题 series 查询