Skip to content

Latest commit

 

History

History
6 lines (6 loc) · 130 Bytes

Create _Acronyms_using_Python.md

File metadata and controls

6 lines (6 loc) · 130 Bytes

user_input = str(input("Enter a Phrase: ")) text = user_input.split() a = " " for i in text: a = a+str(i[0]).upper() print(a)