I have a data frame like this:
col1 col2 col3
A 12134 tea2014 2
B 2013 coffee 1 1
C green 2015 tea 4
I want to remove where the digits occurring for exact four times
The result will look like:
col1 col2 col3
A 12134 tea 2
B coffee 1 1
C green tea 4
What is the best way to do it using python