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