【Python】CSVを読み込んでhのカラムで絞って、content列ごとにマージして要約する【Colaboratory】
Google Drive from google.colab import drive drive.mount('/content/drive/') %cd "/content/drive/My Drive/googleseo/data" テキスト読み込み import pandas as pd df = pd.read_csv("marge.txt") h列のユニークなリストを作っておいて、あとでループ処理する # h列のユニークなリストを作っておいて、あとでループ処理する。 h_list =
2022/12/23 17:37