Exercise: Fill empty dictionary

Fill the empty dictionary with the missing key-value pairs. Add the keys name and age and assign appropriate values.
person = {
} print(person['name'], 'is', person['age'], 'years old.')
Python
Setting up Python environment...
Output