import re
paragraph = "Bob hit a ball, the hit BALL flew far after ir was hit."
banned = ['hit']
# 단어 문자 아닌 것은 ' ' (공백으로 치환) 하고 소문자로 변경후 , banned가 아닌 것이 리스트로 반환
words = [ word for word in re.sub(r'[^\w]', ' ', paragraph).lower().split()
if word not in banned]
print(words)
'코테 > Python기법' 카테고리의 다른 글
[Python기법] 정수와 배열 같은 줄에 나눠 받기 (0) | 2024.03.21 |
---|---|
[Python기법] 원소 중복 제거 (0) | 2024.03.21 |
[Python기법] Sort 기준 정하기 (0) | 2024.03.21 |
[Python기법] 배열 출력 . join / * (0) | 2024.03.21 |
[Python기법] Counter (0) | 2024.03.20 |