[Tutor] error message

2019-03-21 Thread Glenn Dickerson
;Business', 3.1, False) print(student1.name) I don't understand this error message. Thank you so much, Glenn Dickerson Traceback (most recent call last): File "/home/glen/app.py", line 1, in import Student File "/home/glen/Student.py", line 2 def__i

[Tutor] my gmail of 5 minutes ago

2019-03-21 Thread Glenn Dickerson
I am using Linux Mint 18.3 and Python 3.5. Thank you, Glenn Dickerson ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor

[Tutor] (no subject)

2019-03-16 Thread Glenn Dickerson
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