Mega Code Archive

 
Categories / Python / Tuple
 

Concatinate two tuples

inventory = ("a", "b", "c", "d") chest = ("gold", "gems") print chest inventory += chest print inventory