Loop for in Python with php -
how loop like: for(i = 0; < 100; i++)
?
this code in php, want create loop in python 3x.
thanks brothers me.
use built-in range function takes optional step , interval [a, b)
so:
for in range(0, 100, 1): #
how loop like: for(i = 0; < 100; i++)
?
this code in php, want create loop in python 3x.
thanks brothers me.
use built-in range function takes optional step , interval [a, b)
so:
for in range(0, 100, 1): #
Comments
Post a Comment