따옴표가 없는 모든 텍스트를 공백으로 바꾸기

따옴표가 없는 모든 텍스트를 공백으로 바꾸기

다음과 같은 파일이 있습니다

"""Some docstring and stuff.

More lines, etc etc.

"""

a = 'Another quoted text and there\'s "more contents" ' + "anything with double-quotes and single quotes around it" + "more text. Doesn't matter what" \
    """\
    A multi-line statement here. Some arbitrary text

    """

파일 내용을 읽고 이 대체 내용을 최대한 효율적으로 인쇄하고 싶습니다.


"""Some docstring and stuff.

More lines, etc etc.

"""

    'Another quoted text and there\'s "more contents" '   "anything with double-quotes and single quotes around it"   "more text. Doesn't matter what"
    """
    A multi-line statement here. Some arbitrary text

    """

어떻게 해야 하나요? 이상적으로는 스트리밍/유닉스 파이프를 사용하여 출력을 디스크에 쓰는 비용을 지불할 필요가 없는 솔루션을 원합니다. 당신은 가지고 있습니까?Linux 명령줄 도구이것이 작동합니까?

관련 정보