I have a list that I create by analyzing some text. Let's say the list looks like
charlist = ['a', 'b', 'c']
I would like to take the following list
numlist = [3, 2, 1]
and put it together so that my combo box looks like
[['a', 3], ['b', 2], ['c', 1]]
Is there an easy way to do this?
source share