Post

@PythonPr Answer: A) list
Because [] defines a list in Python.
Also, lists can hold mixed data types (int, string, etc.), which matches [1, 23, 'hello', 1].
English

The answer is A) list.
In Python, lists are defined by square brackets [] and are incredibly versatile because they are mutable and can store heterogeneous data types (integers and strings in this case).
Mastering these fundamentals is what separates a coder from a developer. Who else caught the duplicate '1' at the end?
English
























