The aim is to find all universities which are established after 1979. To accomplish this task: - From GRID data open intitutes.csv - Load all data into a Dictionary - Create a loop that goes through all the items in the Dictionary and prints the university names that are established after 1979. Useful weblinks: - DictReader: https://docs.python.org/2/library/csv.html#csv.DictReader - Dictionary: https://www.tutorialspoint.com/python3/python_dictionary.htm - Stackoverflow Search Dictionary: https://stackoverflow.com/questions/28228345/how-to-search-through-dictionaries-in-python
The aim is to find all universities which are established after 1979. To accomplish this task:
Useful weblinks: