We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4eb0370 commit 2fb390fCopy full SHA for 2fb390f
Create _Acronyms_using_Python.md
@@ -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