Just to provide an alternative way to solve Matthew.
tuples = [('and', 44023), ('cx', 37711), ('is', 36777) .... ] strings, numbers = zip(*tuples)
If at some point you decide that you want both parts of the tuple to be in separate sequences (avoids the two concepts of the list).
source share