Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ActiveState/code
/ div
Method
div
recipes/Python/59884_RPN_Stack_class/recipe-59884.py:171–173 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
169
self.pop(2); self.push(newx)
170
171
def
div(self):
172
newx = self.gety() / self.getx()
173
self.pop(2); self.push(newx)
174
175
def
modulo(self):
176
newx = self.gety() % self.getx()
Callers
2
rend
Method · 0.45
rend
Method · 0.45
Calls
4
gety
Method · 0.95
getx
Method · 0.95
pop
Method · 0.45
push
Method · 0.45
Tested by
no test coverage detected