Untitled
Anonymous
plain_text
01/12/2024 11:36 AM
548 B
14
Indexable
cur_path = pathlib.Path().resolve() # текущий путь до папки
files_path = f'{cur_path}/info-stat-11-2023/01 промышленность/'
files_path
'/home/jovyan/titorenko.aa/jupyter/converting/info-stat-11-2023/01 промышленность/'
import glob
data_files = sorted(glob.glob('01*.xls'))
dfs = []
for filename in data_files:
dfs.append(filename)
dfsEditor is loading...
Leave a Comment