谁能指出我出了什么问题?
我一直newGrid.setValue(n[k][0], n[k][1], List[k])
试图将每个坐标的每个 x/y 的值输入到一个不同的函数中,该函数需要三个参数,xy 和 value。值是打印在网格上某个位置的内容,x 和 y 是坐标。
self.listOfRows[x - 1][y - 1] = value
IndexError:列表分配索引超出范围
def gridMileage(List):
x = []
y = []
n = []
k = 0
best = 0
while len(List) > 0:
for i in range(len(List)):
x = List[i][0]
y = List[i][1]
n.append([x,y])
if x > best:
best = x
elif y > best:
best = y
newGrid = Grid(best)
while k < 2:
newGrid.setValue(n[k][0], n[k][1], List[k])
k = k + 1
del List[0]
del List[1]
del n[0]
del n[1]
newGrid.setValue(n[0], n[0] + 1, math.sqrt((n[0][0] - n[1][0])**2 + (n[0][1] - n[1][1])**2))
newGrid.setValue(n[1] + 1, n[1], math.sqrt((n[1][0] - n[0][0])**2 + (n[1][1] - n[0][1])**2))
z = len(newGrid.listOfRows)
while z > 0:
print(newGrid.listOfRows[z - 1])
z = z - 1
class Grid:
def __init__(self, n):
self.listOfRows = []
for i in range(n):
row = []
for j in range(n):
row.append('*')
self.listOfRows.append(row)
def setValue (self, x, y, value):
self.listOfRows[x - 1][y - 1] = value