我需要在 Python 中创建一个参差不齐的二维网格,它有 3 行,其中第一行有 3 列,第 2 行 - 6 列,第 3 行 - 9 列。所有这些都应该在不使用任何包(如 NumPy 或其他任何包)的情况下完成,只需使用以下示例中的类和方法。这是我如何创建常规二维数组的示例
class newArray ():
def __init__(self, capacity, fill = None):
self.item = list()
for count in range (capacity):
self.item.append(fill)
def __str__(self):
return str (self.item)
def __len__(self):
return len(self.item)
def __iter__(self):
return iter(self.item)
def __getitem__(self, index):
return self.item[index]
def __setitem__(self, index, newItem):
self.item[index] = newItem
class raggedGrid():
def __init__(self, rows, cols):
self.data = newArray(rows)
for row in range(rows):
self.data[row] = newArray(cols)
def getRows(self):
return len(self.data)
def getCols(self):
return len(self.data[0])
def __getitem__(self, index):
return self.data[index]
def __setitem__(self, index, newItem):
self.data[index] = newItem
def __str__(self):
result = '\n'
for row in range(self.getRows()):
for col in range(self.getCols()):
result += str(self.data[row][col]) + ' '
result += '\n'
return result
声明后打印出一个网格
a = raggedGrid(4,4)
print(a)
None None None None
None None None None
None None None None
None None None None
我卡住了,不知道从哪里开始