Report Card Display

Mr. Jones is an elementary school teacher who teaches 5 subjects to his class; your task is to write a program that stores a student's name and grades as variables and then displays a report card in the following format

Student: John Doe Course Grade ========================================= History B- Spelling A+ Reading A Math B+ Science C

- Position the grades column 20 spaces to the right

- You should have 7 variables: 6 for the grades, and 1 for the student name

Hint: How align the grades column for a row
print("History{:>20}".format(history_grade))