txlyre 6 月之前
父節點
當前提交
55f1444b17
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      markov.py

+ 1 - 1
markov.py

@@ -37,7 +37,7 @@ class Markov:
 
         text = text.replace("\n", " ")
         text = text.split(" ")
-        text = map(lambda word: word.strip, text)
+        text = map(lambda word: word.strip(), text)
         text = filter(bool, text)
         text = list(text)