Skip to content

Commit 32fd3fd

Browse files
authored
Update Day_11.md
1 parent 1ac6a1e commit 32fd3fd

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Status/Day_11.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,17 @@ for i in range(5,10):
4444
print(lst1)
4545
print(lst2)
4646
```
47+
**OR**
48+
```python
49+
50+
'''
51+
Solution by: CoffeeBrakeInc
52+
'''
53+
54+
tup = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
55+
lt = int(len(tup)/2)
56+
print(tup[:lt], tup[lt:])
57+
```
4758
------------------
4859

4960
# Question 39

0 commit comments

Comments
 (0)