FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
GitHub Viewer
class Mario(): def move(self): print('I am moving!') class Shroom(): def eat_shroom(self): print('Now I am big!') class BigMario(Mario, Shroom): pass bm = BigMario() bm.move() bm.eat_shroom()
Back
|
FazBrowse Home
|
New Git URL