This repo contains python code that generates an acronym from a phrase.
Run the code.
Python
user_input = str(input("Enter a Phrase: "))
text = user_input.split()
a = " "
for i in text:
a = a+str(i[0]).upper()
print(a)
Output
Enter a Phrase: hello world
HW