load(ListOfStudentGrades)
load(ListOfStudentNames)
load(ListOfStudentRemarks)
Grade=element(ListOfStudentGrades)
Name=element(ListOfStudentNames)
Remark=element(ListOfStudentRemarks)
if Grade > 75:
print("The student "+Name+" has passed with the grade of "+Grade+". Remarks on the student: "+Remark)
else
print("The student "+Name+" has failed with the grade of "+Grade+". Remarks on the student: "+Remark)
Comments
Leave a comment