Select the correct ways to get the value of marks key. student = { "name": "Emma", "class": 9, "marks": 75 } Select 2 co
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Select the correct ways to get the value of marks key. student = { "name": "Emma", "class": 9, "marks": 75 } Select 2 co
Question 8 (2 points) aTuple w ("Orange", [10, 20, 30], (5, 15, 25)) . . . aTuple[1][1] aTuple[1:2][1] aTuple[1:2](1) aTuple[1:2][1]
Select the correct ways to get the value of marks key. student = { "name": "Emma", "class": 9, "marks": 75 } Select 2 correct answer(s) m = student[2]) m = student['marks']) m = student.get('marks') m = student.get(2)