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:
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.