I want to create a tuple from a few different elements where one of them is a list, but I want this list to be transformed into individual elements as the tuple is created.
a = range(0,10)
b = 'a'
c = 3
tuple_ex = (a,b,c)
The stored values in the tuple_ex are: ([0, 1, 2, 3, 4, 5, 6, 7, 8, 9], 'a', 3)
The values I desired to be stored in the tuple_ex are: (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 'a', 3)
Is there a simple way to do this or do I need to code it?