count(keyword, [start, [end]]) - keyword 포함 개수
endswith(postfix, [start, [end]]) - 문자열 끝에 postfix가 있는지 검사
find(keyword, [start, [end]]) - keyword가 있는 첫번째 인덱스, 없으면 -1
index(keyword, [start, [end]]) - keyword가 있는 첫번째 인덱스, 없으면 Error 발생
[출처] Python string|작성자 대한민군
>>> 'python'.count('p')
1
>>> 'python'.count('p',1)
0
>>> 'python'.find('p')
0
>>> 'python'.find('i')
-1
0
>>> 'python'.index('i')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: substring not found
>>> 'python'.endswith('on')
True
>>> 'python'.endswith('hon')
True
>>> 'python'.endswith('onn')
False
'파이썬' 카테고리의 다른 글
[파이썬, Python] 현재 폴더의 파일 리스트 출력하기 예제 (dir /w) (1) | 2015.07.21 |
---|---|
[파이썬, Python] 논리연산 (0) | 2015.07.21 |
[파이썬, Python] 파일명 확장자 변경하기 예제 (0) | 2015.07.20 |
[파이썬, Python] if x is not None or if not x is None? (1) | 2015.06.12 |
[파이썬, Python] binary file 열어 byte arrary로 읽기 (1) | 2015.04.27 |