Question: def low _ case ( words _ in ) : return words _ in . lower ( ) Choose the correct output of calling the

def low_case(words_in):
return words_in.lower()
Choose the correct output of calling the function above using the code:
words_lower = low_case("Return THIS lower")
print(words_lower)
"Return THIS lower"
"return this lower"
No Output
an Error
def low _ case ( words _ in ) : return words _ in

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!