Hi there,
I'm relative new to Python and I discovered that there's one single way
to cycle over an integer variable with for:
for i in range(0,10,1)

which is equivalent to:
for (i = 0; i < 10; i++)

However, how this C statement will be translated in Python?

for (j = i = 0; i < (1 << H); i++)

Thanks
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to