The Python Tuple list type Published by John Player on February 26, 2019 Tuple’s are advanced list which are made with rounded brackets: myTuple = ('foo', 'spam', 22, False, True) Important You cannot append a Tuple : myTuple.append() ! You cannot reassign values either : myTuple[0] = ‘tree’ Published inPyCharmPythonscripting