string 자료형 문장부호 없애는 방법 string.puctuation
2021. 7. 9. 16:55ㆍPython
string 자료형에서 ' , . ! ? 등 문장을 읽기 쉽게 나타낼 때
import string
data ='Let`s go to lunch!'
result = data.translate(str.maketrans('','',string.punctuation))
print(result)
# Lets go to lunch
# 다른방법
punct = string.punctuation
for c in punct:
data = data.replace(c, "")
print(data)
# Lets go to lunch
728x90
반응형
'Python' 카테고리의 다른 글
Python @classmethod, @staticmethod 차이점 (0) | 2021.07.10 |
---|---|
python 해당 값 찾기 in 연산자 (0) | 2021.07.09 |
cp949' codec can't decode byte 0xec in position 84: illegal multibyte sequence 오류 해결 json파일 가져올때 (0) | 2021.06.30 |
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe2 in position 14: invalid continuation byte 해결 방법 (0) | 2021.05.14 |
SyntaxError: Non-ASCII character 에러 해결 (0) | 2021.05.14 |