71.5k views
4 votes
Write a program in python that ask the user to enter a word and then capitalizes every other letter of that word

User LMH
by
4.5k points

1 Answer

5 votes

Answer:

a = input("please enter a word: ")

print("Here is the capitalized version: ")

print(a.upper())

User Ryyker
by
5.7k points