Skip to content

Commit 811a4c1

Browse files
authored
Update Day_11.md
1 parent 8cf0dc8 commit 811a4c1

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Status/Day_11.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,16 @@ print tp2
2121
----------------
2222
**My Solution: Python 3**
2323
```
24+
tpl = (1,2,3,4,5,6,7,8,9,10)
25+
lst1,lst2 = [],[]
26+
27+
for i in range(0,5):
28+
lst1.append(i)
29+
30+
for i in range(5,10):
31+
lst2.append(i)
32+
33+
print(lst1)
34+
print(lst2)
2435
```
36+
------------------

0 commit comments

Comments
 (0)