Answer :
In this exercise we have to use the computer language knowledge in python, so the code is described as:
This code can be found in the attached image.
So the code can be described more simply below, as:
height = []
height.append([16,17,14])
height.append([17,18,17])
height.append([15,17,14])
print(height)
See more about python at brainly.com/question/26104476

