Answer:
Explanation:
Firstly, use the keyword "class" to create a Student class.
Next, create a class constructor (__init__) that takes input for student name, student number and number of course (Line 2) and assign the input to the three class attributes (Line 3-5). All the three class attributes are preceded with keyword self.
Next, create a student object (Line 7) and at last print all the attributes (Line 8-10).