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