I have a file which has special characters, so I used file operations to read.
f=open('st.txt','r')
string=f.read()
The sample string is
"Free Quote!\n \n Protecting your family is the best investment you\'ll eve=\nr \n"
now I want to remove all the special characters and get only the words from the string. so that my string will be:
"Free Quote Protecting your family is the best investment you'll ever"