Nested list: two dimensions
matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] print matrix[1] [4, 5, 6] print matrix[1][1] print matrix[2][0]