diff --git a/Status/Day 2.md b/Status/Day 2.md index 37aaf66..fa51119 100644 --- a/Status/Day 2.md +++ b/Status/Day 2.md @@ -452,6 +452,16 @@ def inputs(): print(*(line.upper() for line in inputs()),sep='\n') ``` +```python +'''Solution by: Cheeseycat +''' +list = input("list:") +lst = [] +for i in list: + lst.append(i.upper()) +lst = "".join(lst) +print(lst) +``` --- [**_go to previous day_**](https://github.com/darkprinx/100-plus-Python-programming-exercises-extended/blob/master/Status/Day%201.md "Day 1")