FileNotFoundError: [Errno 2] No such file or directory: '../datarow/dados_empresaB.csv'
ao executar comando não encontra o arquivo , ja foi declarado a path_csv = '../datarow/dados_empresaB.csv'
FileNotFoundError Traceback (most recent call last)
Cell In[21], line 2
1 dados_csv = []
----> 2 with open(path_csv,'r') as file:
3 spamreader = csv.reader(file, delimiter=',')
4 for row in spamreader:
File ~/Documentos/pipeline_dados/.venv/lib/python3.10/site-packages/IPython/core/interactiveshell.py:324, in _modified_open(file, *args, **kwargs)
317 if file in {0, 1, 2}:
318 raise ValueError(
319 f"IPython won't let you open fd={file} by default "
320 "as it is likely to crash IPython. If you know what you are doing, "
321 "you can use builtins' open."
322 )
--> 324 return io_open(file, *args, **kwargs)
FileNotFoundError: [Errno 2] No such file or directory: '../datarow/dados_empresaB.csv'