Basic Classes¶

Make a class to store information about a student, which should handle a name, a grade classification, and an average.

UML¶

Student UML

Create three variables of type Student. Read in values for the three students and print them out again.

Give the average for all three students.

Do not use a list, and do not use any loops.

Enter the first student's name: Esteban
Enter the first student's grade: 12
Enter the first student's average: 79.3

Enter the second student's name: Dave
Enter the second student's grade: 10
Enter the second student's average: 91

Enter the third student's name: Michelle
Enter the third student's grade: 11
Enter the third student's average: 98.6

The names are: Esteban Dave Michelle
The grades are: 12 10 11
The averages are: 79.3 91 98.6

The average for the three students is: 89.633333

©2021 Daniel Gallo

This assignment is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States License.

Creative Commons License

Adapted for Python from Graham Mitchell’s Programming By Doing