Python Python|glob.glob() 使い方 ファイル名 取得 ディレクトリ一覧 リスト 拡張子なし
import glob
filedir = 'C:/Users/Downloads'
files = glob.glob(filedir+'/*.csv')
for file in files:
with open(file, '...
Python
Python
Python
Python
Python