Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

python 2. (8 points) Write a program that imitates the str.find() function. Your program should ask the user for the original string at the beginning.

python image text in transcribed
2. (8 points) Write a program that imitates the str.find() function. Your program should ask the user for the original string at the beginning. After that it will repeatedly ask the user for the character to search for, the starting index (if empty default to 0), the ending index (if empty default to the length of the original string). Each time the program must print the index of the first occurrence of the character. The program should stop if the character is not provided (i.e., the user presses enter without writing anything). Below is a sample run of the program. Enter a string: The quick brown fox is in the empty house. Enter a character to search for: f Enter the start index: Enter the end index: Character f appears first at index 16 Enter a character to search for: f Enter the start index: Enter the end index: 15 Character f is not in the string Enter a character to search for: 2 Enter the start index: Enter the end index: Character z is not in the string Enter a character to search for: h Enter the start index: 10 Enter the end index: 30 Character h appears first at index 27 Enter a character to search for: Process finished with oxit code 0

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

Beginning C# 2005 Databases

Authors: Karli Watson

1st Edition

0470044063, 978-0470044063

More Books

Students also viewed these Databases questions

Question

Discuss organizational culture.

Answered: 1 week ago

Question

What are some of the reasons why diversity education programs fail?

Answered: 1 week ago