I have a list like so:
[("How", 0.23),("Like", 1.23),("Book",0.53)]
All I want is to loop through the list and put the strings into a new list like this:
["How", "like", "Book"]
I know a nested loop can do it, but is there any simpler way to do it?