github.phpd.cn/thought-machine/please@v12.2.0+incompatible/src/parse/asp/test_data/interpreter/slicing.build (about)

     1  x = [1, 2, 3]
     2  a = x[1]
     3  b = x[1:]
     4  c = x[:1]
     5  d = x[1:2]
     6  e = x[-1]
     7  f = x[:-1]
     8  g = x[:3]