I have an existing tuple containing two list:
list_a = [1, 2, 3]
list_b = [4, 5, 6]
tuple = list_a, list_b
tuple = ([1, 2, 3], [4, 5, 6])
How do I add another list to this tuple without creating a tuple in the tuple containing the first two lists?
list_c = [7, 8, 9]
#Code to add list_c to tuple
tuple = ([1, 2, 3], [4, 5, 6], [7, 8, 9])