Python Data Structure
(Redirected from Python-based data structure)
Jump to navigation
Jump to search
A Python Data Structure is a data structure that is expressed in as Python code.
- Context:
- It can range from being a Python v2 Data Structure to being a Python v3 Data Structure.
- It can range from being a Python Built-in Data Structure to being a Python Library Data Structure to being a Python Custom Data Structure.
- …
- Example(s):
- a Python Dictionary, such as a Python Dictionary of Lists.
- a Python List, such as a Python List of Dictionaries.
- a numpy Array.
- a Pandas-based Data Structure.
- …
- Counter-Example(s):
- a Scala data structure, R data structure, Perl data structure, ...
- a SQL data structure, ...
- See: Python Subroutine, Python Module.
References
- https://docs.python.org/2/tutorial/datastructures.html
- https://docs.python.org/3.1/tutorial/datastructures.html