파이썬
파이썬 range() 기능
행복햐
2017. 8. 18. 13:13
<예제>
for i in range(5) :
print (i)
<결과>
0
1
2
3
4
<예제>
for i in range (3, 6):
print (i)
<결과>
3
5
6