
Understanding the Python path and how to reference a file – what is the absolute and relative path to the file you are loading? What directory are you working in?.Understanding how data is represented inside CSV files – if you open a CSV file, what does the data actually look like?.



The basic process of loading data from a CSV file into a Pandas DataFrame (with all going well) is achieved using the “read_csv” function in Pandas: # Load the Pandas libraries with alias 'pd'
