Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ActiveState/code
/ getx
Method
getx
recipes/Python/59884_RPN_Stack_class/recipe-59884.py:103–108 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
101
class
RPN_Stack(Stack):
102
103
def
getx(self):
#get x register (bottom)
104
try
:
105
self.stack[0]
106
except
:
107
return
"error: stack underflow"
108
return
self.stack[0]
109
110
def
gety(self):
#get y register
111
try
:
Callers
15
add
Method · 0.95
sub
Method · 0.95
mul
Method · 0.95
div
Method · 0.95
modulo
Method · 0.95
pow
Method · 0.95
neg
Method · 0.95
sin
Method · 0.95
cos
Method · 0.95
tan
Method · 0.95
arcsin
Method · 0.95
arccos
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected