Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Python Considere the following variable. 11 In [ ]: Students_Info={ 'lloyd' : { name : Lloyd, homework: [90.0,97.0,75.0,92.0], quizzes: [88.0,40.0,94.0], tests: [75.0,90.0] }, 'alice':{ name
Python
Considere the following variable. 11 In [ ]: Students_Info={ 'lloyd' : { "name" : "Lloyd", "homework": [90.0,97.0,75.0,92.0], "quizzes": [88.0,40.0,94.0], "tests": [75.0,90.0] }, 'alice':{ "name" : "Alice", "homework": [100.0, 92.0, 98.0, 100.0], "quizzes": [82.0, 83.0, 91.0], "tests": [89.0, 97.0] }, 'tyler': { "name": "Tyler", "homework": [0.0, 87.0, 75.0, 22.0], "quizzes": [0.0, 75.0, 78.0], "tests": [100.0, 100.0] }} 11 18 In [ ]: * 2.1. Show Lloyd's all info In [ ]: * 2.2. Show Lloyd's Homework grades In [ ]: # 2.3. Show Lloyd's last grade on the homework. In [ ]: # 2.4. Show Lloyd's average on homework if all of them have the same percentages
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started