Cia has wrapped the report card formatting code within a function generate_report_card
so that she can generate a report card dynamically based on the student data given to it. She passed on this function to her colleagues so that they can feed in the student data i.e. subject, score, name of the student, and date of the test, and generate the report card. However, few of them found it difficult to use as they didn't know in which order to pass these arguments.
In order to make the arguments for the function clear, Cia has decided to make these arguments into keyword arguments instead, so that the order won't matter. Help Cia by converting the arguments of generate_report_card
to keyword arguments. Call the function once done.