On 2020-09-17 at 09:24:57 -0600, William Pearson <[email protected]> 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
