演習課題「Series同士の演算」
右のコードエリアにはsというSeriesが定義されています。
sとtの積(掛け算の結果)を出力してください。
期待する出力値
a 99
b 11
c 44
dtype: int64
演習課題「Seriesとスカラーの演算」
右のコードエリアにはsというSeriesが定義されています。
sの全ての要素に813を足したSeriesをprint()でそのまま出力してください。
期待する出力値
a 816
b 814
c 815
dtype: int64
※有料会員になるとこの動画をご利用いただけます
詳しい説明を読む
#04:Seriesの演算
このチャプターでは、Seriesにおける足し算や掛け算などの演算について学習します。
import pandas as pd
s = pd.Series({"a": 3, "b": 1, "c": 2})
t = pd.Series({"b": 11, "c": 22, "a": 33})
print(s + t)
import pandas as pd
s = pd.Series({"a": 3, "b": 1, "c": 2})
t = pd.Series({"b": 11, "d": 22, "a": 33})
print(s + t)
import pandas as pd
s = pd.Series({"a": 3, "b": 1, "c": 2})
print(s * 10)
ログインすると採点できます
コードの実行