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):     # 

Comments

Popular posts from this blog

shopping cart - Page redirect not working PHP -

php - How to modify a menu to show sub-menus -

python - Installing PyDev in eclipse is failed -