2 >>> l 3 ['spam', 'ham', 314, 23] 4 5 >>> l[0] 6 spam 7 8 >>> l[0] = 'monkey' 9 >>> l 10 ['monkey', 'ham', 314, 23] Python’s Pragmatism This example showcases the ease in which arrays can be created and manipulated. Define a list, print an item in that list, or replace an item with simple methods.

