make_student(name, age, grade) that returns a dictionary with keys "name", "age" and "grade" mapped to the given arguments, in that key order.make_student('Asha', 21, 'A'){'name': 'Asha', 'age': 21, 'grade': 'A'}Pack the three arguments into a dict literal.
A dict literal `{...}` is the simplest way.
Insertion order is preserved in Python 3.7+.