colors = ("red", "green", "blue") print(colors) print(type(colors)) # Duplicates and mixed types are allowed mixed = ("cat", 42, True, "cat") print(mixed)
Click Run to execute this code.