use string argument in functions in python
def greet(name, msg="Good morning!"):
    """
    This function greets to
    the person with the
    provided message.
    If the message is not provided,
    it defaults to "Good
    morning!"
    """
    print("Hello", name + ', ' + msg)
greet("Kate")
greet("Bruce", "How do you do?")