ICS3 Exam Study Guide:

- for loops are used to add items to an array (using append and to print out indicidual elements using the loop index. (see "bands example in tutorial) - Random numbers: requires importing the random module. Example: import random . pick = random.randint(1, 15) # selects one random integer from 1 to 15. print pick ................
................