The nurse has written a Nursing Care Plan for Mrs. Potter. T…

Questions

# 1. Write а Pythоn snippet thаt prоmpts fоr 7 Quiz scores to fill а list of integers. # Find the average of the scores with the lowest one dropped# 2. Write a Python script with the following functions:## A function graph_title that takes no parameters and returns a String.# Request a String from the user to be used for the title of the graph.# A function grades_list that takes no parameters and returns a List of Integers.# Ask the user to enter a list of integers, they can enter as many integers as they like.# The function returns these in the List.# A function print_graph that takes a String (the graph title) and a List of Integers as parameters.# This method prints the title and a graph to the command line using the List of Integers as data.# Each value in the List is the number of stars to print on that line.# Each element in the List is a separate line in the graph.