Select the correct ways to get the value of marks key. student = { "name": "Emma", "class": 9, "marks": 75 } Select 2 co
Posted: Fri Jul 01, 2022 5:35 am
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)