What does greeting(count=2, name="Ash", msg="Hiya") print?
In def greeting(msg, name="Friend", count=1), which call uses the default for name?
In greeting("Welcome", count=1, name="Anita"), the value "Welcome" is a positional argument.
Circle one: True False
With def greeting(msg, name="Friend", count=1), what does greeting(count=0, msg="Hello") print?
Which of these calls produces an error?
A function appends each caller to a default list log. The first call adds "Ann" and the second adds "Ben". What does log hold after the second call?
Which call follows the recommended spacing around the equals sign?
Mia writes def add_item(item, box=[]) that appends item to box and returns it. She calls add_item("pen") and then add_item("cup"). What is wrong?