Skip to content

Instantly share code, notes, and snippets.

@digitalconceptvisuals
Created July 30, 2020 20:48
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 digitalconceptvisuals/84f53e16411e4f87ef0bd95d798415ca to your computer and use it in GitHub Desktop.
Save digitalconceptvisuals/84f53e16411e4f87ef0bd95d798415ca to your computer and use it in GitHub Desktop.
class Univ:
def __init__(self):
# define an attribute
self.name = "ABC"
univ = Univ()
print(univ.name) # This works
print(univ.college) # This gives error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment