Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
x = range(1, 10, 3)
0
e = x[1] # e == 2
+
range(10)[1:3] # range(1, 3) range(10)[::2] # range(0, 10, 2) range(10)[3:0:-1] # range(3, 0, -1)