184k views
4 votes
In Python, the data structure that stores elements of the same data type is called an array.

User Iscle
by
3.7k points

1 Answer

3 votes

Answer:

Yes

Step-by-step explanation:

An array is a homogeneous data structure (elements have same data type) that stores a sequence of consecutively numbered objects--allocated in contiguous memory. Each object of the array can be accessed by using its number (i.e., index). When you declare an array, you set its size.

User TypeIA
by
3.3k points