Question: Python Question 1 3 pts Suppose you have a function called foo that takes keyword arguments. Also suppose you have a dictionary of values called

Python
Question 1 3 pts Suppose you have a function called foo that takes keyword arguments. Also suppose you have a dictionary of values called data. How would you call foo with this dictionary so that foo gets separate keyword parameters for each key/value pair in the dictionary (rather than a single parameter that is a dictionary)? foo(**data) This cannot be done. foo(data) foo(*data)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
