Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
1
def
goodDay(name, ending=
"Thank you"
):
2
print(f
"Good Day, {name}"
)
3
print(ending)
4
5
goodDay(
"Harry"
,
"Thanks"
)
6
goodDay(
"Rohan"
)
Callers
1
04_default_argument.py
File · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected