On 2020-09-17 at 09:24:57 -0600,
William Pearson <william.pear...@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
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to