-9
我試試這個讓我的目標輸出:轉換一個int_list()的配置,以bool_list()
pin_configuration = [[1, 1, 3], [2, 2], [3, 3, 1], [4, 4]]
bool_list = [[False] * 68 for r in range(68)]
for r, j in pin_configuration:
bool_list[r - 1][j - 1] = True
現在我有一個錯誤:
for r, j in pin_configuration:
ValueError: too many values to unpack
我想這一點:
bool_list = [[True, False, True,False,...], [False, True, False,
False,...], [True, False, True, False,...]]
你能爲所需的輸出提供了一個例子? –
'bool_list'與'pin_configuration'列表有關嗎? –
@HarshithThota bool_list是我的輸出 – srky