Series
for [Python] range
More Code
2018. 6. 20. 17:00
# Python 3
for i in range(4):
print(i)
""" Output
0
1
2
3
"""