# Python 2.x
for i in range (20, 31):
print i
# Python 3.x
print(i)
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
for i in range (20,31): print(i)
Comments
for i in range (20,31): print(i)