Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ActiveState/code
/ push
Method
push
recipes/Python/59884_RPN_Stack_class/recipe-59884.py:39–40 ·
view source on GitHub ↗
(self, item)
Source
from the content-addressed store, hash-verified
37
#these first few carry out basic stack functions. always necessary
38
39
def
push(self, item):
40
self.stack = [item] + self.stack
41
42
def
pop(self, num_of_loops=1):
43
x=[]
Callers
15
__init__
Method · 0.95
add
Method · 0.45
sub
Method · 0.45
mul
Method · 0.45
div
Method · 0.45
modulo
Method · 0.45
pow
Method · 0.45
neg
Method · 0.45
sin
Method · 0.45
cos
Method · 0.45
tan
Method · 0.45
arcsin
Method · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected