감동, 마음이 움직이는 것
[python] string에서 특정 문자만 지우기 str.replace("before","") 본문
Tips (Utility, Computer Language, and etc.)
[python] string에서 특정 문자만 지우기 str.replace("before","")
Struggler J. 2017. 12. 14. 23:50예를들어 문자열 "김해"김""에서 "를 없애고 싶다면
sentence.replace("\"", "")라고 하면 된다.
만약 "를 '로 바꾸고 싶다면
sentence.replace("\"", "\'")라고 하면 된다.
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[python] array type변경 (0) | 2017.12.14 |
---|---|
[awk] if문 사용하기 '{if (condition) } action" (0) | 2017.12.14 |
[벤다이어그램] 4개이상 집합의 벤다이어그램 (0) | 2017.12.14 |
[file 권한] read/write/execute (r/w/x) (0) | 2017.12.14 |
[python] list의 특정 성분 삭제하기: list.pop(idx) (0) | 2017.12.14 |