Skip to content

Commit

Permalink
solution for question 9 added
Browse files Browse the repository at this point in the history
  • Loading branch information
hajimalung.baba committed Jul 30, 2020
1 parent 54c7851 commit 29953b3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Status/Day 2.md
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,19 @@ for line in map(str.upper, user_input()):
print(line)
```

```python
'''Soltuion by: hajimalung baba
'''
def inputs():
while True:
string = input()
if not string:
return
yield string

print(*(line.upper() for line in inputs()),sep='\n')
```

---

[**_go to previous day_**](https://github.com/darkprinx/100-plus-Python-programming-exercises-extended/blob/master/Status/Day%201.md "Day 1")
Expand Down

0 comments on commit 29953b3

Please sign in to comment.