# just add a comma (,) after the value you want to add to the tuple. my_tuple = (1,2,3,4,5) my_tuple += 6, my_tuple += 'hi', print(my_tuple) >>> (1, 2, 3, 4, 5, 6, 'hi')