From 7ad5863e8d83f28e1c1fc95b27244769d4dd63c8 Mon Sep 17 00:00:00 2001 From: Melih Eren MALLI <139157728+cheseeycat@users.noreply.github.com> Date: Thu, 4 Apr 2024 01:24:00 +0300 Subject: [PATCH] my solution for day2.md --- Status/Day 2.md | 10 ++++++++++ 1 file changed, 10 insertions(+) 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")