On Mon, Dec 14, 2020 at 1:23 PM Schachner, Joseph < Joseph.Schachner at teledyne.com> wrote: > >>> r = range(10) > So r is a list containing 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 > To get a list of consecutive int's, you can use, for EG: r = list(range(10))