0
Idk
For in range(0.20.?) How do I do?
5 odpowiedzi
+ 6
range(start, stop, step)
This is the syntax for range class
For example, range(0, 20, 2) is (0, 2, 4, ..., 18)
+ 1
koni nita I did not understand your question
0
The line of code you posted just iterates from 0 to 19. What do you want to achieve/do after that line?
0
Miss Scarlet is right. I didn't see the ? at the end. :)
0
thnx