+ 1
how to get genuine words from the string in python
example "lovessunday" should give loves and sunday
4 odpowiedzi
+ 4
This might be a topic you need to dive into.
https://towardsdatascience.com/top-5-natural-language-processing-JUMP_LINK__&&__python__&&__JUMP_LINK-libraries-for-data-scientist-32463d36feae
+ 3
Machine learning
+ 2
it requires a lot of computation and optimization.
you could for example use a dictionary file (not python dictionary data type) a real word list open it and look for patterns of each word in the dictionary file in the string.
and split the string according to those patterns.
that means you are in the territory of big data. there are many libraries to help you with that.
it's feasible.
+ 2
thanks guys for your help..now i m in proper direction