Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/bslatkin/effectivepython
/ print_parameters
Function
print_parameters
example_code/item_035.py:110–112 ·
view source on GitHub ↗
(**kwargs)
Source
from the content-addressed store, hash-verified
108
109
print(
"Example 8"
)
110
def
print_parameters(**kwargs):
111
for
key, value in kwargs.items():
112
print(f
"{key} = {value}"
)
113
114
print_parameters(alpha=1.5, beta=9, gamma=4)
115
Callers
1
item_035.py
File · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected