Created
November 7, 2017 01:06
-
-
Save curiositycasualty/b7e182bf4ea266d3117de00fbf61f18b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In [1]: class Yay: | |
...: def __init__(self, ugh): | |
...: self.ugh = ugh, | |
...: | |
In [2]: y=Yay('yay') | |
In [3]: y.ugh | |
Out[3]: ('yay',) | |
In [4]: class Yay: | |
...: def __init__(self, ugh): | |
...: self.ugh = ugh | |
...: | |
In [5]: y=Yay('yay') | |
In [6]: y.ugh | |
Out[6]: 'yay' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment