Generation

translateSat, 17 Dec 2022

階層フォルダにある特定のデータを抽出する

import glob for file in glob.glob("../folder/subfolder/*.csv"): print(file) f = open(file,"r") for row in f: print(row) f.close()

Want to kickstart your project?Use the new AI Studio to create your code