python&tensorflow&pytorch
for loop
tomato13
2011. 1. 19. 18:28
def test12():
for i in range(0, 100, 15): # i는 15씩 증가
print i
=>
0
15
30
45
60
75
90