Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/dask/dask
/ divmod
Function
divmod
dask/array/_array_expr/_ufunc.py:343–346 ·
view source on GitHub ↗
(x, y)
Source
from the content-addressed store, hash-verified
341
342
@derived_from(np)
343
def
divmod(x, y):
344
res1 = x // y
345
res2 = x % y
346
return
res1, res2
Callers
3
__divmod__
Method · 0.90
__rdivmod__
Method · 0.90
test_divmod
Function · 0.50
Calls
no outgoing calls
Tested by
1
test_divmod
Function · 0.40