Question: Define a function called myfunc that takes in a string, and returns a matching string where every even letter is uppercase, and every odd letter

Define a function called myfunc that takes in a string, and returns a matching string where every even letter is uppercase, and every odd letter is lowercase. Assume that the incoming string only contains letters, and don't worry about numbers, spaces or punctuation. The output string can start with either an uppercase or lowercase letter, so long as letters alternate throughout the string Remember, don't run the function, simply provide the definition To give an idea what the function would look like when tested:

myfuncC'Anthropomorphi sm) #Output: 'aNtHrOpOm0rPhIsM | Added note: this exercise requires that the function return a string. Print statements will not work here. A Oops, your solution is incorrect 1- def myfunc(string): 2 lst = [] 3 for i in range (0,len(string)): exercise.py False is not true: This is incorrect if ix2-0: 1 lst.appendCstringi]) else: Lst.append(string[i].upper a -join(lst) return(a)

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!