du_chuan 2019-10-29 21:33
浏览 612

为啥会显示name error错误啊?

[Clang 6.0 (clang-600.0.57)]
Type "help", "copyright", "credits" or "license" for more information.
[evaluate elevation.py]
update_elevation(THREE_BY_THREE_COPY, [1, 0], [1, 1], -2)
Traceback (most recent call last):
Python Shell, prompt 2, line 1
builtins.NameError: name 'THREE_BY_THREE_COPY' is not defined

def update_elevation(elevation_map: List[List[int]], start: List[int],
stop: List[int], delta: int) -> None:
"""Modify elevation map elevation_map so that the elevation of each
cell between cells start and stop, inclusive, changes by amount
delta.

Precondition: elevation_map is a valid elevation map.
              start and stop are valid cells in elevation_map.
              start and stop are in the same row or column or both.
              If start and stop are in the same row,
                  start's column <=  stop's column.
              If start and stop are in the same column,
                  start's row <=  stop's row.
              elevation_map[i, j] + delta >= 1
                  for each cell [i, j] that will change.

>>> THREE_BY_THREE_COPY = [[1, 2, 1],
...                        [4, 6, 5],
...                        [7, 8, 9]]
>>> update_elevation(THREE_BY_THREE_COPY, [1, 0], [1, 1], -2)
>>> THREE_BY_THREE_COPY
[[1, 2, 1], [2, 4, 5], [7, 8, 9]]
>>> FOUR_BY_FOUR_COPY = [[1, 2, 6, 5],
...                      [4, 5, 3, 2],
...                      [7, 9, 8, 1],
...                      [1, 2, 1, 4]]
>>> update_elevation(FOUR_BY_FOUR_COPY, [1, 2], [3, 2], 1)
>>> FOUR_BY_FOUR_COPY
[[1, 2, 6, 5], [4, 5, 4, 2], [7, 9, 9, 1], [1, 2, 2, 4]]

"""
THREE_BY_THREE_COPY = [[1, 2, 1],
...                    [4, 6, 5],
...                    [7, 8, 9]]
FOUR_BY_FOUR_COPY =  [[1, 2, 6, 5],
...                   [4, 5, 3, 2],
...                   [7, 9, 8, 1],
...                   [1, 2, 1, 4]]
if start[0]==stop[0]:
    for num in range(stop[1]-start[1]):
        elevation_map[start[0]][start[1+i]]=elevation_map[start[0]][start[1+i]]+delta
else:
    for num in range(stop[0]-start[0]):
        elevation_map[start[0]][start[1+i]]=elevation_map[start[0+i]][start[1]]+delta
  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 oracle集群安装出bug
    • ¥15 关于#python#的问题:自动化测试
    • ¥20 问题请教!vue项目关于Nginx配置nonce安全策略的问题
    • ¥15 教务系统账号被盗号如何追溯设备
    • ¥20 delta降尺度方法,未来数据怎么降尺度
    • ¥15 c# 使用NPOI快速将datatable数据导入excel中指定sheet,要求快速高效
    • ¥15 再不同版本的系统上,TCP传输速度不一致
    • ¥15 高德地图点聚合中Marker的位置无法实时更新
    • ¥15 DIFY API Endpoint 问题。
    • ¥20 sub地址DHCP问题