Which of the following is a Python tuple?

244    Asked by CharlesParr in Python , Asked on Dec 20, 2023

Among the four options given which option refers to the right regarding Python tuple? Here are the options given:-

Answered by bhagwati dubey

In the context of Python programming language, the option that is correct for which of the following is a python tuple is option 4 which refers to the parentheses. The tuple in Python is an ordered collection of elements that are represented by parentheses ( ). They are immutable. It means once they have created you can change it.

Option 1 which refers to the “sets” is not a Python tuple. Unlike the tuples, the sets are mutable and unordered. Thus they do not allow duplicate elements. Sets are represented by the curly brackets { }. Here is the example given of a Python tuple:-

  My_tuple = (1, “apple”, 3.14, True)

Option 2 which refers to the “ Dictionaries” is again not a tuple in Python programming language. Like sets that contain an unordered collection of items. The dictionaries are represented by the curly brackets { }.

Option 3 which refers to the “lists” is also not a Python tuple. Unlike the tuples, the arrays can also be changed after creation. The lists are represented by square brackets [ ].



Your Answer

Interviews

Parent Categories