a = ('tree', 'plant', 'bird') b = ('ocean', 'fish', 'boat') # a and b are both tuples c = a + b # c is a tuple: ('tree', 'plant', 'bird', 'ocean', 'fish', 'boat')