fork download
  1. arr =['a' , 'b','c','d','e','f','g','h','i','j' ]
  2.  
  3. print(arr[3:8:2])
  4.  
  5.  
  6.  
Success #stdin #stdout 0.03s 9576KB
stdin
8
stdout
['d', 'f', 'h']