[find]
- find( 찾을 문자, 찾기 시작하는 위치 )
>>> s = 'abcde fghijklmnj'
>>> s.find('j')
10
>>> s.find('j',10)
10
>>> s.find('j',11)
15
>>> s.find('z')
-1
[startswith]
- startswith( "문자" 로 시작하는지, 시작지점 )
>>> s = 'abcde fghijklmnj'
>>> s.startswith('a')
True
>>> s.startswith('a',1)
False
>>> s.startswith('c',2)
True
[endswith]
- endwith('문자'로 끝나는지, 탐색을 시작하는 인덱스, 탐색이 끝나는 인덱스)
>>> s = 'abcde fghijklmnj'
>>> s.endswith('nj')
True
>>> s.endswith('mj')
False
>>> s.endswith('ij',1,-6)
False
>>> s.endswith('ij',1,-5)
True
'AboutPython' 카테고리의 다른 글
[Python] Garbage Collection Tuning (1) | 2024.04.07 |
---|---|
Python Type Hint : Union을 쓰는 이유 (1) | 2024.02.11 |
[파이썬] readlines(), readline() (0) | 2022.05.10 |
[파이썬] writelines() (0) | 2022.05.10 |
[파이썬] with ~ as문 (0) | 2022.05.10 |