Students are given an A (for Absent), P (for Present), and L…

Students are given an A (for Absent), P (for Present), and L (for Late) when attendance is taken in a class. Write Python code to create a list that contains the letters used for attendance. Then write code to display the list using the list name. Use a meaningful and relevant name for the list.

Write python code that asks the user to enter two numbers. U…

Write python code that asks the user to enter two numbers. Use relational operator symbols to determine which of the two number is larger and displays which of the numbers is larger while identifying that value. Use of meaningful and relevant variable names are part of the grade.

Write python code that asks the user how many grades are to…

Write python code that asks the user how many grades are to be entered and averaged. Use a while loop to get the grade from the user and uses an accumulating total statement to get the total amount of all grades. Once all grades have been entered the program performs an average calculation and then outputs the average grade while identifying the value to the user. Solution MUST contain a while loop. Use of meaningful and relevant variable names are part of the grade.