看过来
《pandas 教程》 持续更新中,提供建议、纠错、催更等加作者微信: gr99123(备注:pandas教程)和关注公众号「盖若」ID: gairuo。跟作者学习,请进入 Python学习课程。欢迎关注作者出版的书籍:《深入浅出Pandas》 和 《Python之光》。
(编码题)有一个名为 ser 的 Series,需要根据以下条件查询数据。
import pandas as pd
ser = pd.Series(['ab', 'bc', 'd', 'cc'])
ser
'''
0 ab
1 bc
2 d
3 cc
dtype: object
'''
Python 代码如下:
# 字符串为 bc 的数据
ser[ser == 'bc']
'''
1 bc
dtype: object
'''
# 字符串为 bc 或者 d 的数据
ser[ser.isin(['bc', 'd'])]
ser[(ser=='bc') | (ser=='d')]
'''
1 bc
2 d
dtype: object
'''
# 字符串包含 b 的数据
ser[ser.str.contains('b')]
'''
0 ab
1 bc
dtype: object
'''
查看相关链接中的知识。
(完)
更新时间:2024-03-18 19:54:43 标签:pandas python 习题 series 查询