legal tuple in python code example
Example 1: how to use tupels python
tupel = ('banana',10,True)
print(tupel[2])
Example 2: make a tuple of any object in python
# tuple repitition works like this
print(('Hi!',) * 4) # output: ('Hi!', 'Hi!', 'Hi!', 'Hi!')