bruce blosser <bru...@mcn.org> added the comment:
read the advice... Yes this does work: ("Hello", 1, None) + (23, 19.5, "Goodbye") ('Hello', 1, None, 23, 19.5, 'Goodbye') because you are not creating a 3rd string! but try this, and it will NOT work: FatThing= [(5, 4, "First Place"), (6, 6, "Fifer Place"), (2, 2, "Slowr Place")] print(FatThing) #this works FFThing = FatThing + ('22', '32', '55') #this causes an error! however if you change all the members to strings, it will work!!! ---------- status: closed -> open _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue39641> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com