Question: In python Exercise 2 - altErNaTiNg cApS (5 pts) Before emojis were popular, a somewhat peculiar trend emerged in online communication where users would write
In python

Exercise 2 - altErNaTiNg cApS (5 pts) Before emojis were popular, a somewhat peculiar trend emerged in online communication where users would write with alternating CAPS to convey sarcasm. You are to write a program that automates that process. Given a user input, your program would alternate the case as follows: the first letter of each word is lower case, second letter is capitalized, third letter is lower case, etc. Here's a sample run: User input: A chain is only as strong as its weakest link Program output a chain is only as strong as its weakest LINK To solve the problem, your program would need to iterate through the string, one character at a time, and converting the characters at odd positions in the string (1,3,5,7, etc.) to upper case, and those at even positions to lower case. The string methods to convert to upper and lower case are upper() and lower()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
