answersLogoWhite

0

I believe Python's version of arrays is called dictionaries, although I am not completely sure and will have to check now...

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Which data structure can't store the non-homogeneous data elements?

arrays


Which data structure can't store the homogeneous data elements?

arrays


Are arrays mutable in Python, and if so, how does this impact their use in programming?

Yes, arrays are mutable in Python, meaning their elements can be changed after they are created. This impacts their use in programming because it allows for efficient manipulation of data stored in arrays, making them a versatile and powerful tool for tasks such as sorting, filtering, and updating large sets of data.


How can I efficiently implement a circular array in Python?

To efficiently implement a circular array in Python, you can use the collections.deque data structure. Deque allows for efficient insertion and deletion at both ends of the array, making it suitable for circular arrays. You can use the rotate() method to shift elements in the array, effectively creating a circular structure.


What data structure should be used to make tables?

Two dimensional arrays.


What is a complex data structure?

A complex data structure is the kind of structure that has two arrays. One array hols the real part of the complex data and the other array holds the imaginary part.


What is arrays of structure?

A simple array has of basic data type such as char, int, float... arrays of structure has the type of structure.struct student std[12];Here std is an arrays of structure.


Is String a linear data structure?

yes it is, other linear data structures are lists,queues,stacks,arrays


What is a parallel array?

a parallel is data structure for representing array of records.


What are the differences between structures and arrays?

Arrays are collections of repeated data items. Structures are complex data items made up of other data items, including, potentially, other structures and arrays. You can, of course, also have arrays of structures. Array items can be accessed by using its subscript whereas structure items can be accessed using its dot or "arrow" operator in C, C++, C#, Java, and JavaScript.


Is Array a linear data structure?

Conceptually, an array is a fixed size collection. However, a "ragged" array is not a linear one, nor a "matrix". Those 2 maybe thought of an array of arrays, ragged ones are arrays with different lengths, while matrices are arrays of the same length. Depends on the context of the question, an array is linear itself, regardless what kind of elements it contains. But there exists some arrays (I used math term on purposes) that are not "linear" (the ragged, the matrix, the 3-dimensional, 4-, etc.), thus, NOT all Arrays are Linear.


Is struct is user defined data type?

yes, a structure is a user-made data type so that user can manipulate multiple data types simultaneously. a structure covers up sum limitation of arrays as in it provides heterogenous data type.