Skip to content

Commit ab23ebe

Browse files
authored
Merge PR #125
Update Day 9.md
2 parents 4f92aa9 + cd314b5 commit ab23ebe

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

Status/Day 9.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,17 @@ sum = lambda s1,s2 : s1 + s2
167167
print(sum("10","45")) # 1045
168168
```
169169

170+
**Solution from VK**
171+
172+
```python
173+
def concatenate_str(*args):
174+
result_str = ''
175+
for n in args:
176+
result_str += n
177+
return print(result_str)
178+
concatenate_str('05', '12', '2', '0', '2', '2')
179+
```
180+
170181
---
171182

172183
# Question 30

0 commit comments

Comments
 (0)