>  기사  >  백엔드 개발  >  Python 분할선의 사용 기술에 대한 자세한 설명

Python 분할선의 사용 기술에 대한 자세한 설명

巴扎黑
巴扎黑원래의
2017-05-21 18:50:472059검색

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.