I have a String
c=("Snap-on Power M1302A5 Imperial,IMPRL 0.062IN")
and I need to convert above string to
c=("Snap-on Power Imperial,IMPRL")
i.e i need to remove string that has both letters and numbers,
How can I do this in python?
I tried with
c=c.apply(word_tokenize)
c = c.apply(lambda x: [item for item in x if item.isalpha()])
but got output
c=("Snap-on Power MA Imperial,IMPRL IN")