Skip to content

Commit b48f791

Browse files
committed
3 of sliced listing
1 parent 12e5ab9 commit b48f791

File tree

1 file changed

+4
-0
lines changed
  • Manipulating List

1 file changed

+4
-0
lines changed

Manipulating List/3.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
N = [2, 6, 86, 25, 215, 36, 4, 9, 27, 39]
2+
Output = N[5:] # from the index 5 and till the last index
3+
print(Output)
4+

0 commit comments

Comments
 (0)