Intermediate Python
Dictionaries & Pandas
Dictionaries When you have data scattered in multiple list it is not very intuitive to query it. You have to write plenty of useless lines of code, which makes the code unclear and hard to read. Example : We can use a dictionary which agregates stuff into one object : Read more…