Breaking a string into individual words in Python
I have a large list of domain names (around six thousand), and I would like to see which words trend the highest for a rough overview of our portfolio. The problem I have is the list is formatted as domain names, for example: examplecartrading.com examplepensions.co.uk exampledeals.org examplesummeroffers.com +5996 Just running a word count brings up garbage. So I guess the simplest way to go about this would be to insert spaces between whole words then run a word count. For my sanity I would prefer to script this. I know (very) little python 2.7 but I am open to any recommendations in