Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
字句解析を行う Python モジュールはありますか? (たとえば、文字列を指定すると、それが有効な英単語かどうかを分析しますか?) よろしくお願いします!
英単語のリストを集める必要があります。UNIX では、/usr/share/dict/words を使用できます。単語のリストを python に読み込み、次のようにします。
for word in my_string.split(): if not word in word_list: print mystring, "is invalid" else print mystring, "is valid"