demo_tuple.py:
thistuple = ("apple", "banana", "cherry") print(thistuple)
C:\Users\My Name>python demo_tuple.py
('apple', 'banana', 'cherry')