On 2020-09-17 at 09:24:57 -0600, William Pearson <william.pearson at gmail.com> wrote: > for n in ('first'): That's not a tuple. That's a string. Try it this way: for n in ('first',): # note the trailing comma print n Dan