回答編集履歴

3

戻し切れていない部分を戻しました

2021/06/30 07:34

投稿

Third_Kei
Third_Kei

スコア65

test CHANGED
@@ -30,7 +30,7 @@
30
30
 
31
31
  txt2 += "。" #splitで消えた「。」の補充
32
32
 
33
- if txt2 == "。": #ここで"。"のみを無視
33
+ if txt2 == "" or txt2 == "。": #ここで"。"のみを無視
34
34
 
35
35
  pass
36
36
 

2

変更点をもとに戻しました

2021/06/30 07:34

投稿

Third_Kei
Third_Kei

スコア65

test CHANGED
@@ -26,7 +26,9 @@
26
26
 
27
27
  for j,txt2 in enumerate(splited):
28
28
 
29
+ if j != len(splited) -1 :
30
+
29
- txt2 += "。" #splitで消えた「。」の補充
31
+ txt2 += "。" #splitで消えた「。」の補充
30
32
 
31
33
  if txt2 == "。": #ここで"。"のみを無視
32
34
 

1

プログラムを若干効率化しました

2021/06/30 07:33

投稿

Third_Kei
Third_Kei

スコア65

test CHANGED
@@ -26,11 +26,9 @@
26
26
 
27
27
  for j,txt2 in enumerate(splited):
28
28
 
29
- if j != len(splited) - 1: #splitで消えた「。」の補充
29
+ txt2 += "。" #splitで消えた「。」の補充
30
30
 
31
- txt2 += "。"
32
-
33
- if txt2 == "" or txt2 == "。": #ここで"。"と""の無視
31
+ if txt2 == "。": #ここで"。"のみを無視
34
32
 
35
33
  pass
36
34