Question: Python 3 def insert_tag(input_filename, output_filename, tag, target_word): pass Part Il: HTML Stylizer (20 points) Write a function insert.tag) that takes the following arguments, in this




Python 3
def insert_tag(input_filename, output_filename, tag, target_word): pass
Part Il: HTML Stylizer (20 points) Write a function insert.tag) that takes the following arguments, in this order: 1. input.filename: the name of an HTML file the function will process 2. output.filename: the name of an output file that will contain processed HTMLcode 3. tag: an HTML tag that will be used to stylize particular words in the original file 4. target.word: the targeted word that the function finds and stylizes using the tag You don't actually need to know HTML to solve this problem. Here's an example of what the function is supposed to do. Say this the content in your original HTML file:
I Like Python
p>I love Python, because Python is awesome! I love Python yay! p>This paragraph should remain unchanged. /body> Part Il: HTML Stylizer (20 points) Write a function insert.tag) that takes the following arguments, in this order: 1. input.filename: the name of an HTML file the function will process 2. output.filename: the name of an output file that will contain processed HTMLcode 3. tag: an HTML tag that will be used to stylize particular words in the original file 4. target.word: the targeted word that the function finds and stylizes using the tag You don't actually need to know HTML to solve this problem. Here's an example of what the function is supposed to do. Say this the content in your original HTML file:
I Like Python
p>I love Python, because Python is awesome! I love Python yay! p>This paragraph should remain unchanged. /body>
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
