Again beginner question. I am having a hard time understanding this question in the quizes. I ran it through visual code editor with python extension and debugger but am still at a loss. Probably something very simple that I am missing:
type ormatrix = [[[k for k in range(3)] for j in range(3)] for i in range(3)]
print(matrix[1][2]) paste code here