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?