user = { 'name': 'Bruce', 'Address' : 'Gotham', 'subscription' : { 'title' : 'Student Bundle', 'cost' : 1000 } } print(user.get('subscription').get('title'))
What will be the output
1 answer
The output will be: "Student Bundle"
What will be the output
1 answer