csv_json
csv_json
File Pointer
pickle
list1 = [1,2,3,"hello",3.5]
Python module pickle
1)dump(object_to_write,filehandle)
2)load() - can be used read the dumped data from file
import csv
csv.reader
csv1 = csv.reader(file)
empty list
next() - Used to obtain the header
next() - returns the current row and moves to the next row.
----------------------------------
What is JSON?
json.load() - This function is used to read a JSON file and parse its contents
into a Python object