How to extend a tuple of tuples?
Frank Millman
frank at chagford.com
Fri Sep 9 06:13:11 EDT 2016
More information about the Python-list mailing list
Fri Sep 9 06:13:11 EDT 2016
- Previous message (by thread): How to extend a tuple of tuples?
- Next message (by thread): How to extend a tuple of tuples?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
"Frank Millman" wrote in message news:nqtlue$unj$1 at blaine.gmane.org... > Assume you have a tuple of tuples - > a = ((1, 2), (3, 4)) > You want to add a new tuple to it, so that it becomes - > ((1, 2), (3, 4), (5, 6)) Thanks all. The one I was looking for was a += (5, 6), I understand it now - makes perfect sense. Frank
- Previous message (by thread): How to extend a tuple of tuples?
- Next message (by thread): How to extend a tuple of tuples?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list