kristofer revised this gist . Go to revision
1 file changed, 0 insertions, 0 deletions
acronym.py renamed to acronympy.md
File renamed without changes
kristofer revised this gist . Go to revision
1 file changed, 10 insertions
acronym.py(file created)
@@ -0,0 +1,10 @@ | |||
1 | + | ||
2 | + | ```python | |
3 | + | user_input = str(input("Enter a Phrase: ")) | |
4 | + | text = user_input.split() | |
5 | + | a = " " | |
6 | + | for i in text: | |
7 | + | a = a+str(i[0]).upper() | |
8 | + | print(a) | |
9 | + | ``` | |
10 | + |