(test_sent)
| 5 | import jieba |
| 6 | |
| 7 | def cuttest(test_sent): |
| 8 | result = jieba.cut_for_search(test_sent) |
| 9 | for word in result: |
| 10 | print(word, "/", end=' ') |
| 11 | print("") |
| 12 | |
| 13 | |
| 14 | if __name__ == "__main__": |
no test coverage detected
searching dependent graphs…