I'm trying to solve this
my_list = ["foo", "bar", "baz"]
my_string = "They call me "
I would like to iterate in the list and print each element of the list in quotes at the end of the string.
something like this:
They call me "foo"
They call me "bar"
They call me "baz"
thank you