Day Task 10: Python Dictionaries: Create a dictionary Access the items of a dictionary Change the value of a specific item in a dictionary Print all key names in a dictionary, one by one Print all values in a dictionary, one by one Using the values() function to return values of a dictionary Loop through both keys an values, by using the items() function Check if a key exists Get the length of a dictionary Add an item to a dictionary Remove an item from a dictionary Empty a dictionary Using the dict() constructor to create a dictionary Dictionaries Explained