Question: Python programming a program that gets 6 digits in range of 0 to 5 as grades of a student and place them in a list

Python programming

a program that gets 6 digits in range of 0 to 5 as grades of a student and place them in a list and gets the name of the student and his/her gender and from the list prints the sum, sub, average, and if the average is grater than 1 he/she pass and if it is less than 1 he/she fails. if the gender is male print "mr" before the his name and if the gender is female put "Mrs" before her name.

output should be like this:

sum: () sub:() average:()

Hi (Mr, Mrs) (students name)

you (failed/ passed).

a Python program with a list of 12 grades (no input required).

  • Calculate the average in three ways using for loop, sum function, and mean function.
  • Calculate the median using median function and without using the median function
  • Calculate the mode using the mode function.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!