programming-examples/python/Tuple/Python program to create a tuple.py
2019-11-15 12:59:38 +01:00

6 lines
136 B
Python

#Create an empty tuple
x = ()
print(x)
# Create an empty tuple with tuple() function built-in Python
tuplex = tuple()
print(tuplex)