반응형
파이썬에서 큰 따옴표를 백 슬래시와 큰 따옴표로 어떻게 바꿀 수 있습니까?
>>> s = 'my string with "double quotes" blablabla'
>>> s.replace('"', '\\"')
'my string with \\"double quotes\\" blablabla'
>>> s.replace('"', '\\\"')
'my string with \\"double quotes\\" blablabla'
다음을 얻고 싶습니다.
'my string with \"double quotes\" blablabla'
해결 방법
>>> s = 'my string with \\"double quotes\\" blablabla'
>>> s
'my string with \\"double quotes\\" blablabla'
>>> print s
my string with \"double quotes\" blablabla
>>>
's'를 요청하면 \를 이스케이프하고 인쇄하면 문자열이 더 '원시'상태로 표시됩니다. 그래서 지금...
>>> s = """my string with "double quotes" blablabla"""
'my string with "double quotes" blablabla'
>>> print s.replace('"', '\\"')
my string with \"double quotes\" blablabla
>>>
참조 페이지 https://stackoverflow.com/questions/5997029
반응형
'파이썬' 카테고리의 다른 글
파이썬 Python-10 진수에서 16 진수로, 역방향 바이트 순서, 16 진수에서 10 진수로 (0) | 2020.10.02 |
---|---|
파이썬 숫자를 지정된 범위 내로 제한하는 방법은 무엇입니까? (파이썬) (0) | 2020.10.02 |
파이썬 mkdir -p functionality in Python (0) | 2020.10.02 |
파이썬 .doc to pdf using python (0) | 2020.10.02 |
파이썬 Python 목록 반복을위한 시작 색인 (0) | 2020.10.02 |
댓글