python
Problem Statement: Scrape any 2 cities for all 29 states in India from any database/source. Make a code function(State) which takes State as a input (ex. Uttar Pradesh, Maharashtra) and print any 2 cities. You should not use any API for this exercise. Output: Scrapped Output should be csv file in following format: Record no. Country - India State - All 29 states in India City - cities for a given state (1 city per row) Example: Record No, Country , State , City 1, India, Maharashtra, Pune 2, India, Maharashtra, Mumbai 3, India, Uttar Pradesh, Kanpur 4, India, Uttar Pradesh, lucknow function(state): Input - Maharashtra Output - Pune, Mumbai Deliverables: Submission of scraping code and function(State) Csv file