回答編集履歴
2
Update
answer
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
```python
|
2
|
-
csv_records = [(p
|
2
|
+
csv_records = [(p|q).values() for p, q in zip(data, a)]
|
3
3
|
df = pd.DataFrame(csv_records, columns=('銘柄', '結果'))
|
4
4
|
|
5
5
|
pd.set_option('display.unicode.east_asian_width', True)
|
1
Update
answer
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
```python
|
2
|
-
csv_records = [
|
2
|
+
csv_records = [(p[0]|p[1]).values() for p in zip(data, a)]
|
3
3
|
df = pd.DataFrame(csv_records, columns=('銘柄', '結果'))
|
4
4
|
|
5
5
|
pd.set_option('display.unicode.east_asian_width', True)
|