Notes on Python and Data Science

  • How to Read a Data File
    • The first step is to open the file using open() function.
    • The second step is to read the file using reader() function. The reader() function is imported from the csv module (from csv import reader).
    • After reading the file, you can transform the read file into a list of lists using the list() function.