[Python] 문자열 자르기 (slice)
2016. 9. 28. 11:15ㆍ프로그래밍/Python & dJango
1. 파이썬에서는 문자열을 쉽게 자를 수 있다.
2. 사용법
[n:] > n 부터 끝까지 자름
[n:nn] > n 부터 nn-1까지 자름
[:n] > 처음부터 nn-1까지 자름
ex)
alp = 'HelloBrotherWorld'
> Hello slice
alp[:5]
> brother slice
alp[5:12]
> World slice
alp[12:]
'프로그래밍 > Python & dJango' 카테고리의 다른 글
[Python] with 구문 (0) | 2016.09.30 |
---|---|
[django] template tag "with" 사용법 (0) | 2016.09.30 |
[Python] 축약 함수 lambda 사용법 (0) | 2016.09.28 |
[django] django convert String to Datetime (0) | 2016.09.27 |
[Python] 타입 비교 / 형변환 (0) | 2016.09.26 |