Page 1 of 1

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
by answerhappygod
Select The Correct Ways To Get The Value Of Marks Key Student Name Emma Class 9 Marks 75 Select 2 Co 1
Select The Correct Ways To Get The Value Of Marks Key Student Name Emma Class 9 Marks 75 Select 2 Co 1 (54.11 KiB) Viewed 39 times
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) 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]