tutorial.eyehunts.com
Python convert range to list | Example code - EyeHunts
You can just construct a list from the range object. In Python 3.x range is an iterator. So, you need to convert it to a list:
Rohit