Some of the students have an optional number additional subjects which they can take. Therefore while calculating the student percentage, Cia has to accommodate a variable number of subjects.
Help Cia calculate the same by accepting a variable number of arguments in calculate_percentage
. Note that each subject is given as a keyword argument and is worth 100 marks. The formula for fetching the percentage of a student is sum of subjects / number of subjects
.