Knowledge organisersArrays and Records
Group fields together.
A record groups related fields together. In Python, dictionaries serve as records — each field has a key and a value (e.g. student["name"]).
student = {"name": "Alice", "age": 15}student["name"] → "Alice"student["age"] = 16student = {
"name": "Alice",
"age": 15,
"score": 87
}
print(student["name"]) # Alice
student["score"] = 92 # Update