rezamalik15

Python - Slicing

Nov 16th, 2023
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.51 KB | None | 0 0
  1. # python - slicing
  2.  
  3. numbers = list(range(0,101,2))
  4. # [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100]
  5.  
  6. names = ["andi", "adlin", "toni", "restu", "kamal"]
  7.  
  8. # [:end]
  9. # [start:end]
  10. # [start:end:step]
  11.  
  12. print(numbers[6])
  13. print(numbers[0:6])
  14.  
  15. print(numbers[1:5])
  16.  
  17. print(numbers[0:10:3])
  18. print(numbers[-1:-10:-1]) # all negative numbers
  19.  
  20. print(names[1:4])
Add Comment
Please, Sign In to add comment