🚀 Hurry! Offer Ends In
00 Days
00 Hours
00 Mins
00 Secs
Enroll Now
X

किस प्रकार का डेटा है:

What type of data is:

 arr = [[1,2,3][2,3,4,5]]
A)
B)
C)
D)

Explanation:

The correct code should be:

arr = [[1, 2, 3], [2, 3, 4, 5]]

This creates a list of lists. Each element inside the outer list is another list.

Answer: (C) List of lists

Latest Updates