Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/bslatkin/effectivepython
/ my_func
Function
my_func
example_code/item_025_example_05.py:21–23 ·
view source on GitHub ↗
(**kwargs)
Source
from the content-addressed store, hash-verified
19
print(
"Example 5"
)
20
# Python 3.5
21
def
my_func(**kwargs):
22
for
key, value in kwargs.items():
23
print(
"%s = %s"
% (key, value))
24
25
my_func(goose=
"gosling"
, kangaroo=
"joey"
)
Callers
1
item_025_example_05.py
File · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected