Python-split() 함수 인스턴스 설명
split 함수 사용법
split(sep=None, maxsplit=-1)
매개 변수sep C 구분자, 기본값은 공백, 줄 바꿈 (), 탭 (\t) 등 모든 빈 문자입니다.
maxsplit C 분할 횟수.기본값은 -1입니다. 모든 것을 구분합니다.
인스턴스:
//
String = 'Hello world! Nice to meet you'
String.split()
['Hello', 'world!', 'Nice', 'to', 'meet', 'you']
String.split(' ', 3)
['Hello', 'world!', 'Nice', 'to meet you']
String1, String2 = String.split(' ', 1)
// n , ,
String1 = 'Hello'
String2 = 'world! Nice to meet you'
String.split('!')
//
['Hello world', ' Nice to meet you']
split 함수 구현
def split(self, *args, **kwargs): # real signature unknown
"""
Return a list of the words in the string, using sep as the delimiter string.
sep
The delimiter according which to split the string.
None (the default value) means split according to any whitespace,
and discard empty strings from the result.
maxsplit
Maximum number of splits to do.
-1 (the default value) means no limit.
"""
pass
위 그림은 Pycharm 문서
def my_split(string, sep, maxsplit):
ret = []
len_sep = len(sep)
if maxsplit == -1:
maxsplit = len(string) + 2
for _ in range(maxsplit):
index = string.find(sep)
if index == -1:
ret.append(string)
return ret
else:
ret.append(string[:index])
string = string[index + len_sep:]
ret.append(string)
return ret
if __name__ == "__main__":
print(my_split("abcded", "cd", -1))
print(my_split('Hello World! Nice to meet you', ' ', 3))
이 Python-split () 함수 실례 용법에 대한 설명은 여기까지입니다. 더 많은 Python-split () 함수 용법과 간단한 실현 내용은 저희 이전의 글을 검색하거나 아래의 관련 글을 계속 훑어보시기 바랍니다. 앞으로 많은 응원 부탁드립니다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python의 None과 NULL의 차이점 상세 정보그래서 대상 = 속성 + 방법 (사실 방법도 하나의 속성, 데이터 속성과 구별되는 호출 가능한 속성 같은 속성과 방법을 가진 대상을 클래스, 즉 Classl로 분류할 수 있다.클래스는 하나의 청사진과 같아서 하나의 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.