Firehose Weekly fuel for the dev firehose

Two Fer

""" demonstrate f-strings using an example"""

def two_fer(name="you"):
    """
    A bakery that has a holiday offer where you can buy two cookies 
    for the price of one ("two-fer one!").
    
    Determine what you will say as you give away the extra cookie to a friend 
    """

    answer = f"One for {name}, one for me."
    return answer