pandasでヘッダーリスト抽出。
# ヘッダーから特定の文字列を含むリストを抽出 header_list = hoge_df.columns.values.tolist() header_list = list(hoge_df.columns.values) #これでもOK