Question: 1. Need python coding help! 2. 3. 4. 5. Saved BlockPy: #14.3.1) Bad Call The code below defines a function named fix_typos (consumes a sentence
1. Need python coding help!

2.

3.

4.

5.

Saved BlockPy: #14.3.1) Bad Call The code below defines a function named fix_typos (consumes a sentence and fixes any instances of writing "the" as "teh", a common mistake, maintaining the capitalization for the first letter) and then calls it 3 times. However, there is a problem. Try running the code, and observe the output. Then, fix the code Server Execution:dle Printer Feedback Instructor Feedback Although your idea is good, this solution will not work because there is no way to correctly capitialize strings with more than one sentence (the capitalize method only capitalizes the first letter of the string, not thee first letter of the entire sentence). Instead, you can solve this problem by focusing on the fact that there are only two situations: the string'Teh and the string 'teh' Remember, you can use replace multiple times! Incorrect Answer Trace Variables Run BlocksSplit Text Reset Upload E History 1 def fix_typo(a_sentence): return a_sentence.lower).replace("teh", "the").sentence() print(a sentence) 4 fix_typo "What is teh problem?") 5 fix_typo ("Teh door is locked.") 6 fix typo ("Use teh key to unlock teh door.") 7
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
