Question: Define a function named one_each(...) which receives two strings ( not necessarily of the same length) and returns a string containing alternating characters in the

Define a function named one_each(...) which receives two strings ( not necessarily of the same length) and returns a string containing alternating characters in the two strings, starting with the first character of the first string, then the first character of the second string, etc, as many times as there are characters in the shortest string. The extra characters of the longer string are not considered.

As an example, the following code fragment:

print(one_each("abcd","ABCDEFGHIJK"))

should produce the output:

aAbBcCdD

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 Databases Questions!