I have a list like this:
['Ww','Aa','Bb','Cc','ww','AA','BB','CC']
And continuing in such a pattern, with varying capitals and lowercases. What I want to do is join every four items in this list together. So, the resulting new list (given the one above) would look like this:
['WwAaBbCc', "wwAABBCC']
How would I go about this?