Question: Given the method below: def secret ( input 1 , input 2 , input 3 ) : input 1 = str ( input 1 .

Given the method below:
def secret(input1, input2, input3):
input1= str(input1.lower())
input2= str(input2.upper())
input3= str(input3.replace("a","s"))
return input1+ input2+ input3
What will be returned by calling secret("Alice","is", "neat")
Alice is nest
aliceISnest
Alice is neat
Alice IS nest
Aliceisneat
alice is nest
Given the method below: def secret ( input 1 ,

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!