필터 기능을 활용하여 조건부 판단 기능을 구현해 보세요.
예를 들어 문자열 배열에서 민감한 특정 단어를 필터링하려는 경우 샘플 코드는 다음과 같습니다.
#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에서는 a09702c7e7ee6adc9c91064f0aaec71e와 같은 반복 가능한 개체가 반환되며 다음 숫자 문자열은 객체 참조 주소.
목록(단어) 변환을 사용할 수 있습니다.
위 내용은 Python은 문자열 배열에서 민감한 단어를 필터링합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!