3 tuples inside a tuple code example
Example 1: tuples in python
my_tuple = 3, 4.6, "dog"
print(my_tuple)
# tuple unpacking is also possible
a, b, c = my_tuple
print(a) # 3
print(b) # 4.6
print(c) # dog
Example 2: create tuples python
values = [a, b, c, 1, 2, 3]
values = tuple(values)
print(values)