All Subjects
Light
AP Computer Science Principles
`myList` refers to a variable name used to store collections of data elements in an ordered manner. It can be thought of as similar to having multiple items stored together in one box.
Element: An individual item within `myList`.
A numerical value representing the position of an element within `myList`. The first element is at index 0, the second at index 1, and so on.
Access: The act of retrieving or modifying an element from `myList` by referencing its index or position.