Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

image text in transcribed

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Learning MySQL Get A Handle On Your Data

Authors: Seyed M M Tahaghoghi

1st Edition

0596529465, 9780596529468

More Books

Students also viewed these Databases questions