Concatinate two tuples : Tuple Concatination « Tuple « Python






Concatinate two tuples

Concatinate two tuples

inventory = ("a", "b", "c", "d")

chest = ("gold", "gems")

print chest

inventory += chest

print inventory

           
       








Related examples in the same category

1.Tuple concatenationTuple concatenation