Post

@PythonPr Answer: (A) list
The object L = [1, 23, 'hello', 1] is a list in Python. Lists are a type of data structure used to store a collection of items. In Python, lists are defined by enclosing the elements within square brackets [], with the elements separated by commas.
English

@PythonPr # The code from the quiz
L = [1, 23, 'hello', 1]
# Use the type() function to check the data type of L
print(type(L))
<class 'list'>
List 📌
English

@PythonPr A. Square brackets around comma-separated literal values.
English






























