You have been tasked with populating a lead database with information about people scraped from a social media website. The social media website includes a bio of the user on the user's profile page that looks like this:
"Derek's age is 35 and lives in Chicago".
The data will be provided in CSV (Comma Separated Values) format with each "value" being the entire sentence separated by a comma.
Your goal is to extract the name, age, and city and insert it into a dictionary using incrementing numbers as the "primary key". The primary key is used to ensure that each value has a unique identifier since the chance that someone's first name, city, and age matching someone else's is very high. This will ensure those entries in the database are unique.