回答編集履歴
1
d
answer
CHANGED
@@ -4,4 +4,7 @@
|
|
4
4
|
```python
|
5
5
|
for row in data.itertuples():
|
6
6
|
print(row)
|
7
|
-
```
|
7
|
+
```
|
8
|
+
|
9
|
+
他にも指定した行を取得したり、用途に応じていろいろと関数が用意されています。
|
10
|
+
リファレンスの [Indexing, iteration](https://pandas.pydata.org/pandas-docs/stable/reference/frame.html#indexing-iteration) の欄に関数が載っています。
|