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 trialSohail Mirza
Python Web Development Techdegree Student 5,158 PointsHow would i call this
Could someone explain how i would call this code
def favorite_food(dict):
return "Hi, I'm {name} and I love to eat {food}!".format(**dict)
2 Answers
Mark Kastelic
8,147 PointsTo 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
14,192 Pointsdef 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")
Sohail Mirza
Python Web Development Techdegree Student 5,158 PointsSohail Mirza
Python Web Development Techdegree Student 5,158 Points@Mark Kastelic thanks for your response this was exactly what i am looking for