Last

Report a typo

We have the following code:

student = {'name': 'Kate', 'age': 20, 'specialty': 'biology'}
student.update(degree='bachelor')
print(student.get('age'))
print(student.pop('specialty'))
print(student.popitem())

This program will print several lines. What will the last one be?

Select one option from the list
___

Create a free account to access the full topic