find2 [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. [python] String - 02 안녕하세요. TDR입니다. 오늘은 String-01을 이어서 정리해 보겠습니다. [python] String - 01 안녕하세요. TDR입니다. 오늘은 어느 언어에서만 많이 쓰이는 String을 python에서 어떻게 사용하면 되는지 정리해 보겠습니다. ## 선언 str_object = 'apple' str_object = "banana" # 작은 따옴표 3개를 쓰면 개 tdremon.tistory.com ## 문자열 배치 str_object = 'abcd' # .center() new_str = str_object.ljust(10)# 'abcd ' new_str = str_object.rjust(10)# ' abcd' new_str = str_object.center(10)# ' abcd ' new_s.. 2024. 1. 31. 이전 1 다음