Please enable JavaScript.
Coggle requires JavaScript to display documents.
Python, Data, Django, Mapa mental de vlaskz - Coggle Diagram
Python
-
-
Language
-
-
-
API
Collections API
Mapping
- __getitem__
- __contains__
- __eq__
- __ne__
- get
- items
- keys
- values
-
Set
- isdisjoint
- __le__
- __lt__
- __gt__
- __ge__
- __eq__
- __ne__
- __and__
- __or__
- __sub__
- __xor__
-
Sequence
- __getitem__
- __contains__
- __iter__
- __reversed__
- index
- count
-
-
Data
Data Structures:
- Is a collection of different kinds of data
- That entire data can be represented using an object and can be used throughout the program
- It can hold multiple types of data within a single object
- A.K.A Concrete Implementation
- Time and Space Complexity have important roles
-
-
Data Types:
- Form of variable to which a value can be assigned
- It binds the value to the given data type
- It can hold value but not data
- Is dataless
- A.K.A Abstract Implementation
- Primitive and Non-Primitive data types are defined by language
-
-
Django
Definition
- The web framework for perfectionists with deadlines
- High-level Python web framework
-
-