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.

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 14 years. He provides courses for Maths, Science, Social Science, Physics, Chemistry, Computer Science at Teachoo.