Unit 8 · Lesson 4
Build the idea
Start with the concept and its key vocabulary.
An OCR 1D array stores several values of one type under one name and has a fixed size. Its indices begin at zero, so array names[5] has positions 0 to 4. Python uses lists for the equivalent practical tasks, although Python lists can resize.
A method of organising and storing data so it can be accessed and used.
A fixed-size linear collection of values of one data type under one name.
One value stored in an array.
The zero-based position used to access an array element.