Most voted "tuple" questions
In Python tuples are a data structure that function as a list, but are immutable.
Learn more…52 questions
Sort by count of
-
-2
votes2
answers94
viewsHow to make a replacement using the tuple list in python
The question asks for : A buffet restaurant offers only five basic types of food. Think of five simple dishes and store them in a tuple. • Use a for loop to display each dish offered by the…
-
-2
votes1
answer31
viewsHow to return the indices that an element appears in a tuple?
**Write a function called 'positions' that you take as input arguments a tuple and an item, and returns a list containing all the indexes in which the item appears on tuple. If the item does not…