Can you do something like this in Python?
def give_me_your_three_favorite_things_in_each_given_category(
food=(first, second, third),
color=(first, second, third))
println(f"Your favorite foods are {food.first}, {food.second} and {food.third}")
println(f"Your favorite colors are {color.first}, {color.second} and {color.third}")
give_me_your_three_favorite_things_in_each_given_category(
food=(first="pizza", second="pasta", third="ice cream"),
color=(first="black", second="blue", third="green")
Expected output:
"Your favorite foods are pizza, pasta and ice cream"
"Your favorite colors are black, blue and green"