Check sibling questions

Write a program that reads a string and then prints a string that capitalizes every other letter in the string, for example computer becomes cOmPuTeR.

 

Answer:

Untitled 30.jpg

Code:

str=input( "Enter a string: " )

l=len(str)

str2= ""

for i in range( 0 ,l):

    if i% 2 == 0 :

        str2 = str2+str[i]

    else:

        str2 = str2+str[i].upper()

print("New string: "+str2)

 

Explanation:

upper( ) is an in-built method used to convert lowercase letters to uppercase.

Get live Maths 1-on-1 Classs - Class 6 to 12

Ask a doubt
Davneet Singh's photo - Co-founder, Teachoo

Made by

Davneet Singh

Davneet Singh has done his B.Tech from Indian Institute of Technology, Kanpur. He has been teaching from the past 13 years. He provides courses for Maths, Science, Social Science, Physics, Chemistry, Computer Science at Teachoo.