tuple.values python code example
Example 1: create tuples python
values = [a, b, c, 1, 2, 3]
values = tuple(values)
print(values)
Example 2: tuples in python
# the tuples are like the Read-Only they are not to be changed or modified they're constant
letters = "a", "b", "c", "d" # you can use () as they are optional
print(letters)
"""
tuples are immutable but it's important because they don't returns the bugs
these are sequence types means you can iterate over them by it's index numbers
tuples data can't be changed but list's data can be changed
"""