9 lines
601 B
Markdown
9 lines
601 B
Markdown
## Data Structures
|
|
|
|
In addition to individual data types, AVAP™ provides various data structures that allow for more complex organization and manipulation of data:
|
|
|
|
* Lists: Created using square brackets [ ] and can contain any data type, including other lists.
|
|
* Tuples: Created using parentheses ( ) and are immutable, meaning they cannot be modified once created.
|
|
* Dictionaries: Created using curly braces { } and store key-value pairs, where each key is unique within the dictionary.
|
|
* Sets: Created using curly braces { } and contain unique elements, meaning there are no duplicates in a set.
|