Skip to content

Instantly share code, notes, and snippets.

@mertdotcc
Last active June 24, 2020 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mertdotcc/36e4b4d1d7ff32100651ba8bee7e865a to your computer and use it in GitHub Desktop.
Save mertdotcc/36e4b4d1d7ff32100651ba8bee7e865a to your computer and use it in GitHub Desktop.
Alternative Constructors Blog Post
class Student():
def __init__(self, first_name, last_name, birth_year, emergency_contact):
self.first_name = first_name
self.last_name = last_name
self.birth_year = birth_year
self.emergency_contact = emergency_contact
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment