I've a list comprising of numbers and names.
lst = ['new car', '232', 'famous bike','232', 'new car', '232plane', 'new car', 'plane232']
I want to count only the words like new car, famous bike
and not numeric or alphanumeric.
Output will be 2 because there are two unique words: car, bike.
I know there's a simple answer to it but I can't get my head on to it.
Thanks.