看过来
《pandas 教程》 持续更新中,提供建议、纠错、催更等加作者微信: gairuo123(备注:pandas教程)和关注公众号「盖若」ID: gairuo。跟作者学习,请进入 Python学习课程。欢迎关注作者出版的书籍:《深入浅出Pandas》 和 《Python之光》。
(编码题)现有两个 Series,分别是 s1 和 s2,需求为:
import pandas as pd
a, b = [1, 2, 3], [4, 5, 6]
idx = [*'abc']
s1, s2 = (
pd.Series(a, index=idx),
pd.Series(b, index=idx)
)
s1
'''
a 1
b 2
c 3
dtype: int64
'''
s2
'''
a 4
b 5
c 6
dtype: int64
'''
对 s1 的所有值乘以 2:
s1 * 2
s1.mul(2) # 或者使用方法
'''
a 2
b 4
c 6
dtype: int64
'''
s1 和 s1 对应位置(相同索引标签)相加:
s1 + s2
s1.add(s2) # 或者使用方法
'''
a 5
b 7
c 9
dtype: int64
'''
查看相关链接中的知识。
(完)
更新时间:Aug. 10, 2024, 3:07 p.m. 标签:pandas python 习题 series 计算