Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

def char InWord (word, char): -charInWord() takes in a parameter word and another parameter char and determines whether char is contained in word. -If word

image text in transcribed
def char InWord (word, char): -charInWord() takes in a parameter word and another parameter char and determines whether char is contained in word. -If word is not a string type, or if char is not a string type, the function should return None. -If word contains the letter char, the function should return True. Otherwise, it should return false. - Note: When char is of type string, it should be of length 1. For example, char will be a single letter like "a" or "z." We will not test for cases where char is more than one character, like char = "ab" -*** Note: you will need to use a while loop and string indexing.*** **** You will not get full credit if you use other loops or the in operator. *** return "stub

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions