I have a function where the user passes in a file and a String and the code should get rid of the specificed delimeters. I am having trouble finishing the part where I loop through my code and get rid of each of the replacements. I will post the code down below
def forReader(filename):
try:
    # Opens up the file
    file = open(filename , "r")
    # Reads the lines in the file
    read = file.readlines()
    # closes the files
    file.close()
        # loops through the lines in the file
    for sentence in read:
            # will split each element by a spaace
            line = sentence.split()
    replacements = (',', '-', '!', '?' '(' ')' '<' ' = ' ';')
    # will loop through the space delimited line and get rid of
    # of the replacements
    for sentences in line:
# Exception thrown if File does not exist
except FileExistsError:
    print('File is not created yet')
forReader("mo.txt")
mo.txt
for ( int i;
After running the filemo.txt I would like for the output to look like this
for int i
 
    