フィルター関数を使用して条件判定機能を実装します。
たとえば、文字列配列内の特定の機密単語をフィルタリングして除外する場合、サンプル コードは次のとおりです:
#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 などの反復可能なオブジェクトが返され、次の数字の文字列がオブジェクト参照アドレスです。
リスト(単語)変換が利用できます。