String methods - str.split([sep[, maxsplit]])
2015. 9. 10. 10:25ㆍIT관련
반응형
https://docs.python.org/2.7/library/stdtypes.html?highlight=split#str.split
str.split([sep[, maxsplit]])
문자열을 sep을 구분자로 이용하여 분리한 단어들의 리스트를 반환한다.
sep의 default는 공백이다.
maxsplit는 분리할 단어의 갯수를 의미한다.
>>> string = "a b c d"
>>> print string.split()
['a', 'b', 'c', 'd']
>>> string = "a,b,c,d"
>>> print string.split()
['a,b,c,d']
>>> print string.split(',')
['a', 'b', 'c', 'd']
>>> print string.split(',', 1)
['a', 'b,c,d']
>>> print string.split(',', 2)
['a', 'b', 'c,d']
>>> print string.split(',', 3)
['a', 'b', 'c', 'd']
반응형
'IT관련' 카테고리의 다른 글
파이썬을 이용한 액셀파일(xls, xlsx) 처리 - openpyxl (0) | 2015.09.15 |
---|---|
String methods - str.strip([chars]) (0) | 2015.09.15 |
Compact-TLV (0) | 2015.09.09 |
Cygwin perl locale 오류 수정 (0) | 2015.09.07 |
내장함수 - long(x, base=10) (0) | 2015.07.26 |