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