Home > other >  The Python for loop step length can be change
The Python for loop step length can be change

Time:09-20

I want to realize the following function
For (I=0, num, I +=byte)

Byte is calculated in a loop,

To say I calculate the byte in the loop, and then, the start of the next cycle from I + byte cycle again, byte changed again

CodePudding user response:

Settled, for I in range (0, number, byte)
  • Related