Tuple Python

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