Syntax
list range( list X, int begin, int end )
Description
The range function returns a subset of the elements from list X. The subset of elements in the range specified by begin and end. Any value for end greater than the length of the list is the same as end.
Example
trustedusers={"jamie", "cory", "robyn"}; a=range(trustedusers, 1, 2);
The value of a is set to: {"cory", "robyn"}