नीचे दिया गया ऑब्जेक्ट किस डेटा प्रकार का है?
What data type is the object below?
L=[1, 23, 'hello', 1]
A)
B)
C)
D)
Explanation:
The given object is:
L = [1, 23, 'hello', 1]
Explanation:
- The object
L
is enclosed in square brackets ([]
), which denotes a list in Python. - A list in Python is an ordered collection that can contain items of different data types, including integers, strings, and others.
Answer:
(A) Lists