Python Programming - Tuples - Discussion

Discussion Forum : Tuples - General Questions (Q.No. 2)
2.
How do you create an empty tuple?
empty_tuple = ()
empty_tuple = [ ]
empty_tuple = new Tuple()
empty_tuple = {}
Answer: Option
Explanation:
An empty tuple can be created using parentheses with no elements.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.