Python Programming - Data Types - Discussion

Discussion Forum : Data Types - General Questions (Q.No. 4)
4.
What is the data type of the following value: (1, 2, 3)
String
List
Tuple
Dictionary
Answer: Option
Explanation:
(1, 2, 3) is a tuple in Python. Tuples are used to group together multiple values into a single immutable container.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.