Create a Student class. Each student should have a name and a picture. Add a method, show, that shows the picture for the student.
What will be an ideal response?
```
class Student:
def __init__(self, studentPic, studentName):
self.picture = studentPic
self.name = studentName
def show(self):
self.picture.show()
```
Computer Science & Information Technology
You might also like to view...
Excel uses ________ cell referencing by default in formulas and functions
A) absolute B) relative C) named range D) mixed
Computer Science & Information Technology
The WordArt placeholder displays the phrase ________ when WordArt is inserted on a slide
A) Insert text here B) Key text here C) Enter text here D) Your text here
Computer Science & Information Technology