티스토리 뷰
articles = ["a", "an", "the", "and", "is", "or", "in", "only", "for", "to", "be", "it", "as", "of"]
def filtering_articles(w):
if w not in articles:
return w
text = " ".join(filter(filtering_articles, text.split()))
'PL > Python' 카테고리의 다른 글
[Python][짧은개념] 파이썬의 예외처리 (0) | 2023.01.02 |
---|---|
[Python] Decorator을 써서 print를 깔끔하게 해보자 (0) | 2022.03.23 |
[Python] function docstring, 파이썬 좋은 문서 작성하기 (0) | 2022.01.17 |
[Python] Call by Object Reference (객체 참조에 의한 호출) (0) | 2022.01.17 |
[Python] linked list의 runner 기법 (0) | 2022.01.05 |