Reading Files into Collections
Reading files into collections¶ Let us understand how to read data from files into collections. Python have simple and yet rich APIs to perform file I/O We can create a file object with open in different modes (by default read only mode) To read the contents from the file into memory, we have APIs on …