Post

@PythonPr Answer: A) list
Square brackets [] = list!
› Lists can hold mixed types (int, str, etc.)
› Can have duplicates (1 appears twice)
› Mutable and ordered
For beginners: [] = list, () = tuple, {} = dict/set.
English

@PythonPr Answer: A) list
The object L = [1,23, 'hello',1] is a list. In Python, a list is a data structure used to store an ordered collection of items, which are enclosed in square brackets [] and separated by commas. Lists are flexible and can contain elements
English

@PythonPr A: List list can contain multiple datatype objects
English

@PythonPr List. because array one Data type store & List Multiple Data type store
English



























