fork download
  1. arr = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J']
  2. print(arr[3:8:2])
  3.  
  4.  
Success #stdin #stdout 0.04s 9576KB
stdin
8
stdout
['D', 'F', 'H']