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 9.md #125

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
11 changes: 11 additions & 0 deletions Status/Day 9.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,17 @@ sum = lambda s1,s2 : s1 + s2
print(sum("10","45")) # 1045
```

**Solution from VK**

```python
def concatenate_str(*args):
result_str = ''
for n in args:
result_str += n
return print(result_str)
concatenate_str('05', '12', '2', '0', '2', '2')
```

---

# Question 30
Expand Down