The Python Tuple list type February 26, 2019 PyCharm / Python / scripting 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’