May 2018
Intermediate to advanced
380 pages
9h 37m
English
Infinite iterators return values repeatedly until a terminating condition is reached:
The count(start=0, step=1) function returns evenly spaced values that start at the start argument provided. Stepping is provided to allow skipping values. This function is frequently used with map() to generate consecutive data points. When used with zip(), it can be used to add sequence numbers:
