I have a list of strings called args
. The list looks like this: ['I', 'eat', 'eggs']
I want to generate a string that is all the items in the list, seperated by spaces. ("I eat eggs"
)
How can I do this if the list always has a different amount of items?