I have a list that is in a similar format as this:
list1 = ['random words go', 'here and','the length varies','blah',
'i am so confused', 'lala lala la']
What code would be appropriate to return every 3rd item of the list, including the first word? This is the expected output:
["random", "here", "length", "i", "confused", "la"]
I am thinking that I should use the split function, but I don't know how to do this. Can someone also explain how I can make it so the whole list isn't in 'parts' like that? Rather, how can I turn it into one long list, if that makes sense.