【GAS】Exception: The parameters (number[]) don’t match the method signature for SpreadsheetApp.Range.setValues.
Gasからスプレッドシートへの書き込み時に タイトル通りのエラーが発生しました。 Exception: The parameters (number[]) don’t match the method sig…
Gasからスプレッドシートへの書き込み時に タイトル通りのエラーが発生しました。 Exception: The parameters (number[]) don’t match the method sig…
配列とか。 コードと選択肢は以下になります。
1 2 3 4 5 6 |
num = [[1,2,3,4,5,6,7,8,9,10,11, 12, 13, 14, 15], [16, 17, 18, 19, 20]] col = [row[2] for row in num] print(col) |
1 [3, 18] 2 [2,17] 3 [2,12] 4 [1,20] 実行結果 1 [3, 18] メモ…