ここではある列ごとに対する置換を想定している. pandas dataframeは,seriesの寄せ集めなので,各列についてはseries型になってる. print(type(df.col1))# <class 'pandas.core.series.Series'>print(df.col1.dtype)# int64 3. 代入 置換をする方法その1として,条件にあった行だけ抜き出して,...