Skip to content

Instantly share code, notes, and snippets.

@Zheaoli
Created December 28, 2020 08:15
Show Gist options
  • Save Zheaoli/10dfa41ce1ff003df3da0701f4595f2f to your computer and use it in GitHub Desktop.
Save Zheaoli/10dfa41ce1ff003df3da0701f4595f2f to your computer and use it in GitHub Desktop.
class Abc:
def __init__(self, x=None):
self._x = x
def print(self):
print(self._x)
Abc().print()
x = lambda a: Abc(a)
x(1).print()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment