質問編集履歴
1
codeの記載ミスを修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -38,7 +38,7 @@
|
|
38
38
|
|
39
39
|
price_list=[100, 2000, 3000, 400]
|
40
40
|
|
41
|
-
s = pd.Series(
|
41
|
+
s = pd.Series(price_list)
|
42
42
|
|
43
43
|
df.insert(2, 'price', s)
|
44
44
|
|
@@ -60,7 +60,7 @@
|
|
60
60
|
|
61
61
|
a=[100, 2000, 3000, 400]
|
62
62
|
|
63
|
-
s = pd.Series(
|
63
|
+
s = pd.Series(price_list)
|
64
64
|
|
65
65
|
df.insert(2, 'price', s)
|
66
66
|
|