I want to split a column in pandas dataframe and I am using this code:
df['entry'] = df['entry'].str.split('.')
Now the problem is that I want to split bigger text elements such as:
I am content. I am another content.
But in the data there is also stuff like this:
I am 10.2 content.
I don't want to split the numbers. So I would need some conditional such as:
If dot between numbers, don't split.
How can I do this with pandas?