Я хочу прочитать файл Excel и создать папки после того, что написано внутри листа. Я хотел бы получить первые 2 столбца, объединить их, а затем создать папки, названные в их честь. ну, я новичок и пробовал просматривать все форумы ...
это мой код:
arquivo = xlrd.open_workbook('C:\\Users\\xxx\\Desktop\\Engetran\\Ceriluz\\01-Projeto Executivo\\00 - Documentos\\EGTR-M-P03 - Documentos.xls')
linha = arquivo.sheet_by_index(0)
lista_valores1 = linha.col_values(0)
lista_valores2 = linha.col_values(1)
lista_valores = f"{lista_valores1} {lista_valores2}c"
os.mkdir('C:\\Users\\xxx\\Desktop\\Nova pasta (5)\\Projeto Executivo')
root_path = 'C:\\Users\\xxx\\Desktop\\Nova pasta (5)\\Projeto Executivo'
folders = [ lista_valores ]
for folder in folders:`
os.mkdir(os.path.join(root_path,folder))`
Я получаю сообщение об ошибке:
filenotfounderror winerror 3 the system cannot find the path specified
I был бы благодарен за любой ответ!