How-to articles, tricks, and solutions about RANGE
How do I use a decimal step value for range()?
You can use the numpy library's arange() function to specify a decimal step value for the range.
What is the difference between range and xrange functions in Python 2.X?
In Python 2.X, range and xrange are used to generate a sequence of numbers.
Why is "1000000000000000 in range(1000000000000001)" so fast in Python 3?
The range() function generates a sequence of numbers, starting from the first argument, and ending before the second argument.