values = ['random word1', 20, 'random word2', 54…]
The list has a string then a value and again a string then afterwards a value. The amount of strings followed by values is random. The words are random and the values are random as well
I want to convert the list to something like this:
values = [['random word1', 20], ['random word2', 54]…]