Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 464 Bytes

File metadata and controls

10 lines (6 loc) · 464 Bytes

HTML is a markup format which defines the content of a webpage. JSON is a data interchange format commonly used to pass data between computers on networks, especially the internet. CSV or comma separated values is a very common data format used to store data as segment of text separated by commas.

Parsing a file means analyzing its content to correctly structure the data.

In Python, CSV module to process CSV files.

https://realpython.com/python-csv/