I have a Flexgrid (vb6 not .Net) disconnected from any Db, having some rows like this: 135,00 4 218,00 4 100,00 10 6,00 4 15,00 22 I'm not able to cr
The documentation for Python's itertools.cycle() gives a pseudo-code implementation as: def cycle(iterable): # cycle('ABCD') --> A B C D A B C D A B C D