MCPcopy 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
109print("Example 8")
110def print_parameters(**kwargs):
111 for key, value in kwargs.items():
112 print(f"{key} = {value}")
113
114print_parameters(alpha=1.5, beta=9, gamma=4)
115

Callers 1

item_035.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected