At the end of this lesson, you will be able to:
#!/usr/bin/python
for num in range(10,20): #to iterate between 10 to 19
for i in range(10): #to iterate on the number 0 to 9
>>> range(10)
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
{
...
}