Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Collections (2016, retired 2019) Dictionaries String Formatting with Dictionaries

Sohail Mirza
seal-mask
.a{fill-rule:evenodd;}techdegree
Sohail Mirza
Python Web Development Techdegree Student 5,158 Points

How would i call this

Could someone explain how i would call this code

string_factory.py
def favorite_food(dict):
    return "Hi, I'm {name} and I love to eat {food}!".format(**dict)

2 Answers

To call Sohail's code using the conditions specified in the challenge, we need to pass a dictionary object into the function. In the call below, I create and then pass the dictionary called "myDiet" into favorite_food( ) and print so we can see the resulting string returned.

myDiet = {"name": "Antonio", "food": "Vegetables"}
print(favorite_food(myDiet))
Antonio Falcetta
Antonio Falcetta
14,192 Points
def favorite_food(nome, food):
    val_name = nome
    val_food = food
    print("Hi, I'm {} and I love to eat {}!".format(val_name, val_food))

favorite_food("Antonio", "Vegetables")