Upload your solution as a .py file. Write a Python program (…
Upload your solution as a .py file. Write a Python program (no need to write any function) that creates two dictionaries containing the following information: Contents of the dictionary named ‘students’: Key (as string) Value (as string) Artie Nielsen U15232 Hubert Farnsworth U3024 Contents of the dictionary named ‘grades’: Key (as string) Value (as tuple of integers) U3024 (5, 85, 94, 25) U15232 (67, 75, 88, 90) You will then prompt the user to enter the name of a student and display either “Student not found” if that student’s name is not in the list of keys from the dictionary named “students”, or display the average of the grades that the corresponding student earned (with one digit after the decimal dot). Sample program execution (user input is in red): Enter the name of a student: Artie NielsenArtie Nielsen has an average grade of 80.0 Grading Rubric 1 point for both dictionaries being correctly created and filled with the exact above data 1 point for finding the grades for a given name and computing that student’s average 0.25 point for displaying the above-mentioned error message if the student is not found 0.75 point for displaying prompt(s) and message(s) exactly as in the sample program execution example
Read DetailsIn one year, Red Road Pet Clinic sold 1,460 bags of Dental D…
In one year, Red Road Pet Clinic sold 1,460 bags of Dental Dog Chews. The clinic is open 365 days a year. Sally notices on Thursday that they are running low on chews. The day that the practice orders supplies is every Monday, and the products arrive on Wednesday. What should the reorder point be for the dental chews? Round to a whole number
Read Details