FileNotFoundError: File b'tek0000ALL.csv 'does not exist

0

I'm trying to get a .csv file and it gives me the following error:

  

FileNotFoundError: File b'tek0000ALL.csv 'does not exist

The file is in the same department as the program and the name is well copied. The code is as follows:

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from scipy import stats as ss

df = pd.read_csv("tek0000ALL.csv")

Any idea what may be failing?

    
asked by Zhisi 04.07.2018 в 11:25
source

0 answers