2次元配列から、データを順番に取得する方法を
ご教示頂けないでしょうか
range()では、1次元しかデータを取れないのでしょうか?
セルN7~P8まで順番にデータを取りたいです。
id | name | age |
---|---|---|
N7 | O7 | P7 |
N8 | O8 | P8 |
python
1for i in range(?,7): 2 id = sheets.cell(row=i, column=1).value 3 name = sheets.cell(row=i, column=2).value 4 age = sheets.cell(row=i, column=3).value 5 item = { 6 "id": id, 7 "name": name, 8 "age": age 9 }
回答1件
あなたの回答
tips
プレビュー