Python Thunks

r = range(10) 
print(r) 
range(0, 10) 
print(r[3])
Fragile Fly