回答編集履歴

1

仕様をまちがえていたので、修正版を追記

2019/10/01 07:00

投稿

magichan
magichan

スコア15898

test CHANGED
@@ -109,3 +109,73 @@
109
109
  ```
110
110
 
111
111
  では駄目なのでしょうか?
112
+
113
+
114
+
115
+
116
+
117
+ ---
118
+
119
+ 仕様を間違って理解しておりましたので、修正します。
120
+
121
+
122
+
123
+ **【修正コード】**
124
+
125
+
126
+
127
+ for文の場合の条件文
128
+
129
+ ```Python
130
+
131
+ if ('トマト' not in row[2]) and ('きゅうり' not in row[2]):
132
+
133
+ data_rows.append(row)
134
+
135
+ ```
136
+
137
+
138
+
139
+ pandasの場合
140
+
141
+ ```Python
142
+
143
+ kansei_df = dropdf[~dropdf.iloc[:, 2].str.contains('トマト|きゅうり')]
144
+
145
+ ```
146
+
147
+
148
+
149
+ となるかと思います。
150
+
151
+
152
+
153
+ ---
154
+
155
+
156
+
157
+ **【更に追記】**
158
+
159
+ 'いちご'をふくむ文字列以外を削除
160
+
161
+
162
+
163
+ for文の場合の条件文
164
+
165
+ ```Python
166
+
167
+ if 'いちご' in row[2]:
168
+
169
+ data_rows.append(row)
170
+
171
+ ```
172
+
173
+
174
+
175
+ pandasの場合
176
+
177
+ ```Python
178
+
179
+ kansei_df = dropdf[dropdf.iloc[:, 2].str.contains('いちご')]
180
+
181
+ ```