In [4]:
def call_me(a, f, d, b="", c="cheese", e=False):
if e == True:
return "{} and {} went to the {}{} {}.".format(a, b, c, d, f)
else:
return "YOU SHALL NOT PASS"
## Solution:
call_me("Dave", "factory", "", b="Jerry", e=True)
Out[4]:
In [ ]: