From cd314b5ae906455f7e9d06e39f7d12043fc7a232 Mon Sep 17 00:00:00 2001 From: Viktor <81253033+Viktor-Kiptev@users.noreply.github.com> Date: Mon, 5 Dec 2022 16:37:42 +0100 Subject: [PATCH] Update Day 9.md Add # 29 --- Status/Day 9.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Status/Day 9.md b/Status/Day 9.md index e71b8fd..a9eb56a 100644 --- a/Status/Day 9.md +++ b/Status/Day 9.md @@ -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