|
|
@@ -33,7 +33,7 @@ def isChinese(word): |
|
|
|
notStartChar = ['》', '」', '】', ')', ']', '·', '・', '•'] |
|
|
|
notEndChar = ['《', '「', '【', '(', '[', '·', '・', '•'] |
|
|
|
def notStartEnd(word): |
|
|
|
if word[0] not in notStartChar and word[len(work) - 1] not in notEndChar: |
|
|
|
if word[0] not in notStartChar and word[-1] not in notEndChar: |
|
|
|
return True |
|
|
|
return False |
|
|
|
|
|
|
|