Solucionado (ver solução)
Solucionado
(ver solução)
2
respostas

Erro no arquico xlsx

Assim como várias outras pessoas, ocorre um erro no código

df_xlsx = pd.read_excel('dados/aluguel.xlsx')
df_xlsx 

Já tentei as sugestões dos colegas e o erro persiste.

2 respostas
solução!

Olá, Lucas! Tudo bom?

Qual erro ocorre? Se possível, também peço que mostre a localização do arquivo aluguel.xlsx no ambiente que está utilizando.

O meu ocorre o seguinte erro:

XLRDError Traceback (most recent call last) in 1 # Importando arquivos em EXCEL. 2 ----> 3 pd.read_excel('Dados/aluguel.xlsx')

~\anaconda3\envs\projeto_alura\lib\site-packages\pandas\util_decorators.py in wrapper(args, **kwargs) 116 else: 117 kwargs[new_arg_name] = new_arg_value --> 118 return func(args, **kwargs) 119 return wrapper 120 return deprecatekwarg

~\anaconda3\envs\projeto_alura\lib\site-packages\pandas\io\excel.py in read_excel(io, sheet_name, header, skiprows, skip_footer, index_col, names, usecols, parse_dates, date_parser, na_values, thousands, convert_float, converters, dtype, true_values, false_values, engine, squeeze, **kwds) 228 229 if not isinstance(io, ExcelFile): --> 230 io = ExcelFile(io, engine=engine) 231 232 return io.parseexcel(

~\anaconda3\envs\projeto_alura\lib\site-packages\pandas\io\excel.py in init(self, io, **kwds) 292 self.book = xlrd.open_workbook(file_contents=data) 293 elif isinstance(self.io, compat.stringtypes): --> 294 self.book = xlrd.open_workbook(self._io) 295 else: 296 raise ValueError('Must explicitly set engine if not passing in'

~\anaconda3\envs\projeto_alura\lib\site-packages\xlrd_init__.py in openworkbook(filename, logfile, verbosity, use_mmap, file_contents, encoding_override, formatting_info, on_demand, ragged_rows, ignore_workbook_corruption) 168 # files that xlrd can parse don't start with the expected signature. 169 if file_format and file_format != 'xls': --> 170 raise XLRDError(FILE_FORMAT_DESCRIPTIONS[file_format]+'; not supported') 171 172 bk = open_workbook_xls(

XLRDError: Excel xlsx file; not supported

O local do arquivo : Projetos_Alura/Curso_pandas/Dados