[Tutor] (no subject)

Glenn Dickerson gdickerson222 at gmail.com
Fri Mar 15 21:54:41 EDT 2019


class Student():

    def__init__(self, name, major, gpa, is_on_probation):
        self.name = name
        self.major = major
        self.gpa = gpa
        self.is_on_probation = is_on_probation


import Student
student1 = Student('Jim', 'Business', 3.1, False)
student2 = Student('Pam', 'Art', 2.5, True)
print(student1.name)
print(student2.gpa)

I entered this in IDLE and it failed. Any advice? Thank you.


More information about the Tutor mailing list