Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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!

image text in transcribed

2.

image text in transcribed

3.

image text in transcribed

4.

image text in transcribed

5.

image text in transcribed

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Medical Image Databases

Authors: Stephen T.C. Wong

1st Edition

1461375398, 978-1461375395

More Books

Students also viewed these Databases questions