endsWith1 [python] String(문자열) 포함 여부 확인 안녕하세요. TDR입니다. 오늘은 python에서 어떤 string에 내가 찾고자 하는 string이 포함되어 있는지 확인 방법에 대해서 간략히 정리해 볼까 합니다. 찾고자 하는 string 포함이 되어 있는가? ## 'hello'가 포함되어 있는지 확인 # in print('hello' in 'Hi and hello~') # True print('test' in 'Hi and hello~') # False # find result = 'Hi and hello~'.find('hello') print(result) # 7 result = 'Hi and hello~'.find('test') print(result) # -1 # index result = 'Hi and hello~'.index('hello').. 2024. 3. 14. 이전 1 다음