MCPcopy
hub / github.com/CodeWithHarry/The-Ultimate-Python-Course / goodDay

Function goodDay

Chapter 8/04_default_argument.py:1–3  ·  view source on GitHub ↗
(name, ending="Thank you")

Source from the content-addressed store, hash-verified

1def goodDay(name, ending="Thank you"):
2 print(f"Good Day, {name}")
3 print(ending)
4
5goodDay("Harry", "Thanks")
6goodDay("Rohan")

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected