Removing Symbols and Numbers
This program defines a function remove_non_alphabetic
that takes a file path as input. It reads the content of the file, removes all non-alphabetic symbols using a regular expression ([^a-zA-Z\s]
matches any character that is not a letter or whitespace), and then writes the cleaned content to a new file named cleaned_your_file.txt
(replacing 'convert.txt'
with the actual file name you want to process).