Skip to content

Instantly share code, notes, and snippets.

View MegDuck's full-sized avatar
💭
Creating console browser...

MegDuck

💭
Creating console browser...
View GitHub Profile
class Stack:
def __init__(self):
self._container = []
def push(self, item):
return _container.append(item)
def pop(self)
return _container.pop()
def __repr__(self):