1def greet(name, msg="Good morning!"):
2 """
3 This function greets to
4 the person with the
5 provided message.
6
7 If the message is not provided,
8 it defaults to "Good
9 morning!"
10 """
11
12 print("Hello", name + ', ' + msg)
13
14
15greet("Kate")
16greet("Bruce", "How do you do?")