Post date: Dec 04, 2017 9:46:15 AM
Say you have a list
L = [['hello', 0], ['world', 1], ['the',2]]
then you only want the numbers. You do
[Ls[1] for Ls in L]
like I said, fun.