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

Function goodDay

Chapter 8/03_function_with_arguments.py:1–4  ·  view source on GitHub ↗
(name, ending)

Source from the content-addressed store, hash-verified

1def goodDay(name, ending):
2 print("Good Day, " + name)
3 print(ending)
4 return "ok"
5
6a = goodDay("Harry", "Thank you")
7print(a)

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected