How to create an empty tuple in python
- Last modified: 03 April 2020
- Category: python tutorial
in this article we'll create an empty tuple.
syntax
tuple_name = ()
example
#empty tuple
animals = ()
#print type
print(type(animals))
output
#class'tuple'
English today is not an art to be mastered it's just a tool to use to get a result