One loading idea
pandas loads tabular data into a DataFrame. A DataFrame is the table you will inspect, clean, join, group, chart, and export later.
Use read_* functions to load files, such as read_csv() and read_json(). Use to_* methods later when you write cleaned output.
Pick raw files
For your final HackIndia repo, keep raw files unchanged. Put them in a data/raw folder so anyone can rerun your notebook or script.
Good practice is to load at least two files. Example: orders.csv and customers.json for a small UPI payments, canteen, fest, or placement dataset.