Hints
Each function will have the same basic form, which is a nested loop, thus:
- Make a landscape list.
- Loop y to north_south_size.
- Make a row list.
- Loop x to east_west_size.
- Append height to row.
- Dedent from x loop.
- Append row to landscape.
As for the height data, row_list.append(50)
is reasonably easy. For the
others, consider reusuing y
and x
...