Zuletzt aktiv 1739982565

Änderung f0e00448775bd88ca9567bea05a3a994dc424219

acronym.py Orginalformat
1
2```python
3user_input = str(input("Enter a Phrase: "))
4text = user_input.split()
5a = " "
6for i in text:
7 a = a+str(i[0]).upper()
8print(a)
9```
10
11