Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Day 2.md #143

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions Status/Day 2.md
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,18 @@ def inputs():
print(*(line.upper() for line in inputs()),sep='\n')
```

```
'''Soltuion by: ARYAN GUPTA
'''
s= '''''' #using string
print(s.upper())
while True:
x = input()
if len(x)==0:
break
s+=x +'\n' #adding new line
print(s.upper())
```
---

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