Wednesday 5 February 2014

3.1.2 Data Structures

Computer programming is about making a set of instructions to solve a problem, or complete a task

Data structures help organise data, so it’s easier to work with and suitable for computer processing.

In Python, we have made data structures called lists. names = ["Jared","Jack","Bob"]

The list must say = [] before putting an item in the list e.g

manUnited = []

No comments:

Post a Comment