Python의 분할선은 행을 분할하는 데 사용됩니다. 전달된 매개변수가 True이면 개행 문자 n이 유지된다는 의미입니다. 다음 예를 보면 알 수 있습니다.
코드는 다음과 같습니다.
mulLine = """Hello!!! Wellcome to Python's world! There are a lot of interesting things! Enjoy yourself. Thank you!""" print ''.join(mulLine.splitlines()) print '------------' print ''.join(mulLine.splitlines(True))
출력 결과:
Hello!!! Wellcome to Python's world! There are a lot of interesting things! Enjoy yourself. Thank you! ------------ Hello!!! Wellcome to Python's world! There are a lot of interesting things! Enjoy yourself. Thank you!
이 기능을 사용하면 매우 편리합니다. 들여쓰기 처리 및 기타 방법과 같은 일부 단락 처리 기능을 작성합니다. 요리책의 예:
코드는 다음과 같습니다.
def addSpaces(s, numAdd): white = " "*numAdd return white + white.join(s.splitlines(True)) def numSpaces(s): return [len(line)-len(line.lstrip( )) for line in s.splitlines( )] def delSpaces(s, numDel): if numDel > min(numSpaces(s)): raise ValueError, "removing more spaces than there are!" return '\n'.join([ line[numDel:] for line in s.splitlines( ) ]) def unIndentBlock(s): return delSpaces(s, min(numSpaces(s)))
위 내용은 Python 분할선의 사용 기술에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!