Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ActiveState/code
/ gety
Method
gety
recipes/Python/59884_RPN_Stack_class/recipe-59884.py:110–115 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
108
return
self.stack[0]
109
110
def
gety(self):
#get y register
111
try
:
112
self.stack[1]
113
except
:
114
return
"error: stack underflow"
115
return
self.stack[1]
116
117
def
getz(self):
#get z register
118
try
:
Callers
6
add
Method · 0.95
sub
Method · 0.95
mul
Method · 0.95
div
Method · 0.95
modulo
Method · 0.95
pow
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected