contains

毎日Python/こつこつPython

【毎日Python】Pythonのデータフレームで特定の文字列を含むかどうか確認する方法|str.contains

import pandas as pd df = pd.read_csv('data.csv',encoding='shift-jis') df Pythonで、特定の文字を含むかどうかを確認する方法です。使用するのはPandasシリーズの...