Notice
Recent Posts
Recent Comments
Archives
반응형
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Today
Total
01-09 05:35
250x250
관리 메뉴

꿈꾸는 개발자의 블로그

[Python] 문자열 찾기 : in, find() 본문

Programming/Python

[Python] 문자열 찾기 : in, find()

aldrn29 2022. 5. 29. 23:42

in

찾을 문자열 in 문자열

str = "hello python"

if "py" in str :
    print("Found 'py'")		# Found 'py'
else :
    print("Not Found")

 

find()

문자열.find(찾을 문자열), 문자열.find(찾을 문자열, 시작 인덱스, 끝 인덱스) : 문자열 내에 찾을 문자열이 존재하면, 찾고자 했던 문자열 첫 번째 index를 반환해준다. 그렇지 않다면 -1을 반환한다.  

str = "hello python"

if str.find("py") > -1 :
    print("Found 'py'")		# Found 'py'
else :
    print("Not Found")

 

728x90
728x90
Comments