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

python - Installing PyDev in eclipse is failed -

PHP OOP-based login system -

c# - Nested Internal Class with Readonly Hashtable throws Null ref exception.. on assignment -