Using instance method, complete the code to generate ‘Alex S…
Using instance method, complete the code to generate ‘Alex Smith is a student in middle school.’ as the output. class Student: def __init__(self): self.first_name = ‘ABC’ self.last_name = ‘DEF’ XXXstudent1 = Student()student1.first_name = ‘Alex’student1.last_name = ‘Smith’student1.print_name()
Read Details