Skip to content

Instantly share code, notes, and snippets.

@makmanalp
Created June 6, 2016 01:54
Show Gist options
  • Save makmanalp/e432c87f1885f0b371601649dee3eac5 to your computer and use it in GitHub Desktop.
Save makmanalp/e432c87f1885f0b371601649dee3eac5 to your computer and use it in GitHub Desktop.
Code in the body of a class - 6
In [17]: class Butter(object):
....: if input("salt?") == "yes":
....: salt = True
....: else:
....: salt = False
....:
salt?yes
In [18]: Butter.salt
Out[18]: True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment