Question: ( 2 0 marks ) Write a function swapper ( ) that takes in a string as a parameter and then asks the user for

(20 marks) Write a function swapper() that takes in a string as a parameter and then asks the user for a number between 1 and two less than the number of characters in the string. Then construct two strings that split the input string at the number specified by the user. Finally, create a new string by swapping the new strings and return the result.
For instance, if the input word is elephant and the computer must ask the user to input a number between 1 and 6. If the number of user inputs is 3, then the two new strings become ele and phant. The return string becomes phantele. Assume the string has more than three characters.
Usage with another example is given below:
>>> swapper('england')
Enter a number between 1 and 5: 4
'andengl'
>>> swapper('illinois')
Enter a number between 1 and 6: 6
'isillino'

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!