fork download
  1.  
  2. list = [1,2,3,4,5,6,7,8]
  3. print (list[1:3])
  4.  
Success #stdin #stdout 0.07s 14112KB
stdin
Standard input is empty
stdout
[2, 3]