for on tuple of tuple python code example
Example 1: what are tuples in python
#A tuple is essentailly a list with limited uses. They are popular when making variables
#or containers that you don't want changed, or when making temporary variables.
#A tuple is defined with parentheses.
Example 2: make a tuple of any object in python
# tuple repitition works like this
print(('Hi!',) * 4) # output: ('Hi!', 'Hi!', 'Hi!', 'Hi!')
Example 3: tuple() python
example = [1, 2, 3, 4]
# Here is a list above! As we both know, lists can change in value
# unlike toples, which are not using [] but () instead and cannot
# change in value, because their values are static.
# list() converts your tuple into a list.
tupleexample = ('a', 'b', 'c')
print(list(tupleexample))
>> ['a', 'b', 'c']
# tuple() does the same thing, but converts your list into a tuple instead.
print(example)
>> [1, 2, 3, 4]
print(tuple(example))
>> (1, 2, 3, 4)