質問編集履歴

2

解決策を追記しました

2020/02/06 17:04

投稿

Okachan
Okachan

スコア9

test CHANGED
File without changes
test CHANGED
@@ -271,3 +271,35 @@
271
271
  ・python 3.7.6
272
272
 
273
273
  ・pip3でモジュールのインストール
274
+
275
+
276
+
277
+ ###解決策
278
+
279
+ 無駄な部分があると思いますが,以下のようにして修正したところ無事解決できました.
280
+
281
+ ```python
282
+
283
+ #csvファイルの結合
284
+
285
+ def link_csv(code, year, loops):
286
+
287
+ with open('data/service11/csv/{}/result.csv'.format(code),"w"):pass
288
+
289
+ result = pd.DataFrame()
290
+
291
+ for year in range(year,year + loops):
292
+
293
+ try:
294
+
295
+ file01 = pd.read_csv('data/service11/csv/{}/{}_{}.csv'.format(code,code,year), encoding="cp932", header = 1)
296
+
297
+ result = pd.concat([result,file01],axis='index')
298
+
299
+ except Exception as e:
300
+
301
+ raise
302
+
303
+ result.to_csv('data/service11/csv/{}/result.csv'.format(code), index = False, encoding="cp932")
304
+
305
+ ```

1

自身のファイルパスが丸見えだったので隠しました

2020/02/06 17:04

投稿

Okachan
Okachan

スコア9

test CHANGED
File without changes
test CHANGED
@@ -146,7 +146,7 @@
146
146
 
147
147
  from datetime import datetime
148
148
 
149
- driver = webdriver.Chrome("G:/app/NotGame/Atom/School_study/analysis/Population_ratio/chromedriver_win32/chromedriver.exe")
149
+ driver = webdriver.Chrome("ファイルパス/chromedriver_win32/chromedriver.exe")
150
150
 
151
151
  """
152
152