Skip to content

Commit 2fb390f

Browse files
Create Acronyms using Python
1 parent 4eb0370 commit 2fb390f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Create _Acronyms_using_Python.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
user_input = str(input("Enter a Phrase: "))
2+
text = user_input.split()
3+
a = " "
4+
for i in text:
5+
a = a+str(i[0]).upper()
6+
print(a)

0 commit comments

Comments
 (0)