create tuples code example
Example 1: create tuples python
values = [a, b, c, 1, 2, 3]
values = tuple(values)
print(values)
Example 2: make a tuple
#you can put a lotta stuff in tuples
tup = ("string", 2456, True)
values = [a, b, c, 1, 2, 3]
values = tuple(values)
print(values)
#you can put a lotta stuff in tuples
tup = ("string", 2456, True)