# cs1110.py # Anne Bracy (awb93) # March 26, 2018 """Module with a simple student class. Class demonstrates attributes and a constructor.""" class Student(): """Instance is a student taking python Instance variables: name: student's full name [str] NetID: student's NetID [str], 2-3 letters + 1-4 numbers is_auditing: whether student is auditing the class [bool] """ def __init__(self, name, NetID, is_auditing): """Initializer: instance with name, NetID, and auditing status. name: student's full name [str] NetID: student's NetID [str], 2-3 letters + 1-4 numbers is_auditing: whether student is auditing the class [bool] """ self.name = name self.NetID = NetID self.is_auditing = is_auditing