I am currently try to locate people by their tweets.
I decide to do it by counting word frequency.
But there is some words like 'WeWouldwin' or 'AtGEO'
which I want to separate them and count them individually.
I wonder is there a pythonic way separate them according to the uppercase letter?
So I would have those two words be separate like 'We', 'Would', 'Win' and 'At', 'GEO'.
I have tried the method from the following link:
Split a string at uppercase letters
But this will give the individual uppercase letter(for example, 'G','E','O' instead of 'GEO')