質問編集履歴

1

contents = re.split('\-{5,}',contents)[2]の'\-{5,}'が'\-{3,}'になっていたので直しました。

2020/08/17 09:26

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -102,7 +102,7 @@
102
102
 
103
103
  # ヘッダ部分の除去
104
104
 
105
- contents = re.split('\-{3,}',contents)[2]
105
+ contents = re.split('\-{5,}',contents)[2]
106
106
 
107
107
  # 頭の100文字の表示
108
108