Write a Python script to read the content of NameList.txt and display it on your screen. Write a Python script to ask for 3 strings from the user and write the strings into a file named Note.txt. Write a function named "copy" accepting two parameters: source_file and target_file. It will simply read the content of the source_file and write it to the target_file directly. Thus, the source file will be copied to the target file. Use your copy function to copy the file MyArticle.txt to Target.txt.