当前位置: 首页>>代码示例>>Python>>正文


Python Trie._check_token方法代码示例

本文整理汇总了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
开发者ID:jmcclena94,项目名称:data-structures,代码行数:8,代码来源:test_trie.py

示例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
开发者ID:jmcclena94,项目名称:data-structures,代码行数:8,代码来源:test_trie.py

示例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)
开发者ID:jmcclena94,项目名称:data-structures,代码行数:8,代码来源:test_trie.py

示例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)
开发者ID:jmcclena94,项目名称:data-structures,代码行数:8,代码来源:test_trie.py


注:本文中的trie.Trie._check_token方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。