In: Other
6.8 LAB: Acronyms ( PYTHON PLEASE )
An acronym is a word formed from the initial letters of words in a set phrase. Write a program whose input is a phrase and whose output is an acronym of the input. If a word begins with a lower case letter, don't include that letter in the acronym. Assume there will be at least one upper case letter in the input.
Ex: If the input is:
Institute of Electrical and Electronics Engineers
the output is:
IEEE
# read string
input_string = input()
# acronym
acronym = ""
# iterate over string
for char in input_string:
# if capital
if char.isupper():
acronym += char
print(acronym)
.
Screenchot:
Output:
.