Python - find() 문자 위치 찾기

string.find() 함수를 이용하여 문자열에서 특정 문자 위치를 찾는 방법을 소개합니다.

1. 문자 위치 찾기

string.find(char)는 문자열에서 특정 문자 char의 위치를 Index로 리턴합니다.

만약 문자열에 해당 문자가 없으면 -1을 리턴합니다.

str = "Hello, World"
ch = 'W'

index = str.find(ch)
if index != -1:
    print(f"Found '{ch}', index: {index}")
else:
    print("Not found")

Output:

Found 'W', index: 7

2. 문자열 위치 찾기

string.find(str)string 문자열에서 str 문자열의 위치를 Index로 리턴합니다.

만약 문자열에 해당 문자열이 없으면 -1을 리턴합니다.

str = "Hello, World"
s = 'Wor'

index = str.find(s)
if index != -1:
    print(f"Found '{s}', index: {index}")
else:
    print("Not found")

Output:

Found 'Wor', index: 7
Loading script...

Related Posts

codechachaCopyright ©2019 codechacha