Write a python script that will take two file names as input (src, dest). Open src reading each line in the file, and replacing any occurrences of name with the string "redacted". The resulting rewritten lines will be written to dest. Hint: The re.sub function will be your friend.
This is my attempted solution:
import re
def q12(src, dst):
file_open = (''scr'',''r'')
re.sub(''name'', ''redacted'', string, count=0, flags=0)
file.readline()
outfile = open(''dst'', ''w'')
outfile.write(''dst'')