Knowee
Questions
Features
Study Tools

What do these lines print?>>> a = { 'id': 89, 'name': "John", 'projects': [1, 2, 3, 4], 'friends': [ { 'id': 82, 'name': "Bob" }, { 'id': 83, 'name': "Amy" } ] }>>> a.get('friends')[-1].get("name")‘Bob’Nothing[{‘id’:82, ‘name’:“Bob”}, {‘id’:83, ‘name’: “Amy”}]‘Amy’89

Question

What do these lines print?>>> a = { 'id': 89, 'name': "John", 'projects': [1, 2, 3, 4], 'friends': [ { 'id': 82, 'name': "Bob" }, { 'id': 83, 'name': "Amy" } ] }>>> a.get('friends')[-1].get("name")‘Bob’Nothing[{‘id’:82, ‘name’:“Bob”}, {‘id’:83, ‘name’: “Amy”}]‘Amy’89

🧐 Not the exact question you are looking for?Go ask a question

Solution

'Amy'

Similar Questions

What do these lines print?>>> a = { 'id': 89, 'name': "John", 'projects': [1, 2, 3, 4] }>>> a.get('projects')[3]4[4][1, 2, 3, 4][3]3

What do these lines print?>>> a = { 'id': 89, 'name': "John" }>>> a.get('id')id‘id’a[‘id’]John89

>>> a = { 'id': 89, 'name': "John", 'projects': [1, 2, 3, 4], 'friends': [ { 'id': 82, 'name': "Bob" }, { 'id': 83, 'name': "Amy" } ] }>>> a.get('friends')[-1].get("name")

What do these lines print?>>> a = { 'id': 89, 'name': "John" }>>> a.get('age')‘age’Not found89Nothing12

What is the output of the following code:person = {'name': 'Phill', 'age': 22}a = person. setdefault('age')print('person = ', persons)print('Age = ', a)Aperson = {'name': 'Phill'} and Age = 22Bperson = {'name': 'Phill', 'age': 22} and Age = 22Cperson = {'age': 22} and Age = 22Dperson = {'name': 'Phill', 'age': 22} and name = Phil

1/3

Upgrade your grade with Knowee

Get personalized homework help. Review tough concepts in more detail, or go deeper into your topic by exploring other relevant questions.