question # 1\nmultiple select\nyou already now about some collections. which of the following is a type of…

question # 1\nmultiple select\nyou already now about some collections. which of the following is a type of collection in python? select 2 options.\ndeque\ndataset\nordered set\ngroup\nlist

question # 1\nmultiple select\nyou already now about some collections. which of the following is a type of collection in python? select 2 options.\ndeque\ndataset\nordered set\ngroup\nlist

Answer

Brief Explanations:

In Python, deque (double - ended queue) from the collections module is a collection type. list is also a fundamental collection type in Python for storing an ordered sequence of elements. There is no built - in dataset, ordered set (though there are third - party libraries for ordered sets), and group as collection types in the standard Python library.

Answer:

A. deque F. list