Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ActiveState/code
/ tan_all
Method
tan_all
recipes/Python/59884_RPN_Stack_class/recipe-59884.py:271–275 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
269
index += 1
270
271
def
tan_all(self):
272
index = 0
273
while
index < len(self.stack):
274
self.stack[index] = math.tan(self.stack[index])
275
index += 1
276
277
def
arcsin_all(self):
278
index = 0
Callers
nothing calls this directly
Calls
1
tan
Method · 0.80
Tested by
no test coverage detected