フィルター機能を利用して条件判定機能を実装します。
たとえば、文字列配列内の特定の機密単語をフィルターで除外する場合、サンプル コードは次のとおりです。
#filter out some unwanted tags def passed(item): try: return item != "techbrood" #can be more a complicated condition here except ValueError: return False org_words = [["this","is"],["demo","from"],["techbrood"]] words = [filter(passed, item) for item in org_words]
Python2.x と Python3.x は、Python2 のフィルター/マップ処理と互換性がないことに注意してください。 .x では、リストが直接返されます。
Python3.x では、9511eb37ecd99d90ad6638231e83323d などの反復可能なオブジェクトが返され、次の数字の文字列がオブジェクト参照アドレスです。
リスト(単語)変換が利用できます。
以上がPython は文字列配列内の機密単語をフィルターで除外しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。