定义没有初始化长度的二维数组
要定义没有初始化长度的二维数组,需要首先使用列表理解用列表初始化外部列表:
# Creates a list containing 5 lists, each of 8 items, all set to 0 w, h = 8, 5 Matrix = [[0 for x in range(w)] for y in range(h)]
一旦外部列表初始化后,可以将各个值添加到数组中:
# Adds 1 to the top-left corner of the array, and 3 to the bottom-right Matrix[0][0] = 1 Matrix[h - 1][0] = 3 # Error! Index out of range Matrix[0][w - 1] = 3
请注意,该数组以“y”地址为主,这意味着访问元素时“y 索引”位于“x 索引”之前:
# Prints 1 from the top-left corner print(Matrix[0][0]) # Prints 3 from the bottom-right corner x, y = 0, w - 1 print(Matrix[x][y])
虽然内部列表和外部列表可以任意命名,但建议使用不同的名称,以避免在索引过程中混淆,特别是在处理非方形时数组。
以上是如何在Python中定义没有预定义维度的二维数组?的详细内容。更多信息请关注PHP中文网其他相关文章!