Felipe09
(usa Outra)
Enviado em 18/04/2021 - 14:51h
Prezados boa tarde, sou iniciante no python e estou com dificuldades iniciais em abrir um arquivo para trabalhar nele, estou tentando execultar o comando abaixo mas esta gerando erro e não sei solucionar, alguem pode ajudar?
with open("Users\F8049693\Desktop\arquivos de trafego_dados\trafego_dados_202104_202104_BCKLOG000.txt", "r") as arq:
file = [x.strip( ).split( ) for x in arq]
print(file)
arq.close( )
Ja tentei so deixar o caminho e ou soo nome do arquivo mas esta gerando erro mesmo assim
Erro:
FileNotFoundError Traceback (most recent call last)
<ipython-input-41-998163efbbc5> in <module>()
----> 1 with open("Users\F8049693\Desktop\arquivos de trafego_dados\trafego_dados_202104_202104_BCKLOG000.txt", "r") as arq:
2 file = [x.strip( ).split( ) for x in arq]
3 print(file)
4 arq.close( )
5 F
FileNotFoundError: [Errno 2] No such file or directory: 'Users\\F8049693\\Desktop\x07rquivos de trafego_dados\trafego_dados_202104_202104_BCKLOG000.txt'