本文整理汇总了Python中trie.Trie._check_token方法的典型用法代码示例。如果您正苦于以下问题:Python Trie._check_token方法的具体用法?Python Trie._check_token怎么用?Python Trie._check_token使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类trie.Trie
的用法示例。
在下文中一共展示了Trie._check_token方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_check_input_false
# 需要导入模块: from trie import Trie [as 别名]
# 或者: from trie.Trie import _check_token [as 别名]
def test_check_input_false():
"""Test that a token we believe to be bad returns False."""
from trie import Trie
trie = Trie()
token = '$computer'
assert trie._check_token(token) is False
示例2: test_check_input_false_many_bad_characters
# 需要导入模块: from trie import Trie [as 别名]
# 或者: from trie.Trie import _check_token [as 别名]
def test_check_input_false_many_bad_characters():
"""Test that a token we believe to be bad returns False."""
from trie import Trie
trie = Trie()
token = '$!*&#^|'
assert trie._check_token(token) is False
示例3: test_check_input_true_with_apostrophe
# 需要导入模块: from trie import Trie [as 别名]
# 或者: from trie.Trie import _check_token [as 别名]
def test_check_input_true_with_apostrophe():
"""Test that a token with an apostrophe returns True."""
from trie import Trie
trie = Trie()
token = "computer's"
assert trie._check_token(token)
示例4: test_check_input_true
# 需要导入模块: from trie import Trie [as 别名]
# 或者: from trie.Trie import _check_token [as 别名]
def test_check_input_true():
"""Test that a token we believe to be good returns True."""
from trie import Trie
trie = Trie()
token = 'computer'
assert trie._check_token(token)