Use the code to answer the question.

user = {
'name': 'Parker',
'Address' : 'London',
'subscription' : {
'title' : 'Student Bundle',
'cost' : 1000,
'valid_till' : {
'month': 'Jan',
'year': 2022,
'date': 2
}
}
}
Demonstrate how can we display the value of key “year” using the get method in the code.

(1 point)
Responses

print(user.get(subscription).get(valid_till).get(year))
print(user.get(subscription).get(valid_till).get(year))

print(user.['subscription']['valid_till']['year'])
print(user.['subscription']['valid_till']['year'])

print(user.get('valid_till').get('subscription').get('year'))
print(user.get('valid_till').get('subscription').get('year'))

print(user.get('subscription').get('valid_till').get('year'))

1 answer

To display the value of the key "year" using the get method, the correct code would be:

print(user.get('subscription').get('valid_till').get('year'))

This correctly accesses the nested structure in the user dictionary by first getting the 'subscription' dictionary, then the 'valid_till' dictionary, and finally retrieving the 'year' value.