how to print inner tuple in python program .
Answers
Answered by
0
Answer:
Tuples in Python
A Tuple is a collection of Python objects separated by commas. In someways a tuple is similar to a list in terms of indexing, nested objects and repetition but a tuple is immutable unlike lists which are mutable.
Creating Tuples
# An empty tuple
empty_tuple = ()
print (empty_tuple)
Similar questions