I'm trying to find the number of integer words in a list of strings, heres list
mylist = ["Mahon Point retail park", "Finglas","Blackpool Mahon", "mahon point blanchardstown"]
Expected Result:
4 1 2 3
There are 4 words [0] in my list, 1 in my list [1], etc.
for x, word in enumerate(mylist): for i, subwords in enumerate(word): print i
Completely not working ....
What do you guys think?
source share