@@ -2363,7 +2363,7 @@ msgid ""
23632363"the range [*start*, *end*]. Optional arguments *start* and *end* are "
23642364"interpreted as in slice notation."
23652365msgstr ""
2366- "범위 [*start*, *end*] 에서 서브 스트링 *sub* 가 중첩되지 않고 등장하는 횟수를 돌려줍니다. 선택적 인자 "
2366+ "범위 [*start*, *end*] 에서 부분 문자열 *sub* 가 중첩되지 않고 등장하는 횟수를 돌려줍니다. 선택적 인자 "
23672367"*start* 와 *end* 는 슬라이스 표기법으로 해석됩니다."
23682368
23692369#: ../Doc/library/stdtypes.rst:1539
@@ -2428,7 +2428,7 @@ msgid ""
24282428"are interpreted as in slice notation. Return ``-1`` if *sub* is not "
24292429"found."
24302430msgstr ""
2431- "서브 스트링 *sub* 가 슬라이스 ``s[start:end]`` 내에 등장하는 가장 작은 문자열의 인덱스를 돌려줍니다. 선택적 "
2431+ "부분 문자열 *sub* 가 슬라이스 ``s[start:end]`` 내에 등장하는 가장 작은 문자열의 인덱스를 돌려줍니다. 선택적 "
24322432"인자 *start* 와 *end* 는 슬라이스 표기법으로 해석됩니다. *sub* 가 없으면 ``-1`` 을 돌려줍니다."
24332433
24342434#: ../Doc/library/stdtypes.rst:1589
@@ -2437,7 +2437,7 @@ msgid ""
24372437"position of *sub*. To check if *sub* is a substring or not, use the "
24382438":keyword:`in` operator::"
24392439msgstr ""
2440- ":meth:`~str.find` 메서드는 *sub* 의 위치를 알아야 할 경우에만 사용해야 합니다. *sub* 가 서브 스트링인지 "
2440+ ":meth:`~str.find` 메서드는 *sub* 의 위치를 알아야 할 경우에만 사용해야 합니다. *sub* 가 부분 문자열인지 "
24412441"확인하려면 :keyword:`in` 연산자를 사용하십시오::"
24422442
24432443#: ../Doc/library/stdtypes.rst:1599
@@ -2498,7 +2498,7 @@ msgstr ""
24982498msgid ""
24992499"Like :meth:`~str.find`, but raise :exc:`ValueError` when the substring is"
25002500" not found."
2501- msgstr ":meth:`~str.find` 과 비슷하지만, 서브 스트링을 찾을 수 없는 경우 :exc:`ValueError` 를 일으킵니다."
2501+ msgstr ":meth:`~str.find` 과 비슷하지만, 부분 문자열을 찾을 수 없는 경우 :exc:`ValueError` 를 일으킵니다."
25022502
25032503#: ../Doc/library/stdtypes.rst:1652
25042504msgid ""
@@ -2731,7 +2731,7 @@ msgid ""
27312731"replaced by *new*. If the optional argument *count* is given, only the "
27322732"first *count* occurrences are replaced."
27332733msgstr ""
2734- "모든 서브 스트링 *old* 가 *new* 로 치환된 문자열의 복사본을 돌려줍니다. 선택적 인자 *count* 가 주어지면, 앞의 "
2734+ "모든 부분 문자열 *old* 가 *new* 로 치환된 문자열의 복사본을 돌려줍니다. 선택적 인자 *count* 가 주어지면, 앞의 "
27352735"*count* 개만 치환됩니다."
27362736
27372737#: ../Doc/library/stdtypes.rst:1820
@@ -2741,15 +2741,15 @@ msgid ""
27412741" *start* and *end* are interpreted as in slice notation. Return ``-1`` "
27422742"on failure."
27432743msgstr ""
2744- "서브 스트링 *sub* 가 ``s[start:end]`` 내에 등장하는 가장 큰 문자열의 인덱스를 돌려줍니다. 선택적 인자 "
2744+ "부분 문자열 *sub* 가 ``s[start:end]`` 내에 등장하는 가장 큰 문자열의 인덱스를 돌려줍니다. 선택적 인자 "
27452745"*start* 와 *end* 는 슬라이스 표기법으로 해석됩니다. 실패하면 ``-1`` 을 돌려줍니다."
27462746
27472747#: ../Doc/library/stdtypes.rst:1827
27482748msgid ""
27492749"Like :meth:`rfind` but raises :exc:`ValueError` when the substring *sub* "
27502750"is not found."
27512751msgstr ""
2752- ":meth:`rfind`\\ 와 비슷하지만, 서브 스트링 *sub* 를 찾을 수 없는 경우 :exc:`ValueError` 를 "
2752+ ":meth:`rfind`\\ 와 비슷하지만, 부분 문자열 *sub* 를 찾을 수 없는 경우 :exc:`ValueError` 를 "
27532753"일으킵니다."
27542754
27552755#: ../Doc/library/stdtypes.rst:1833
@@ -3917,8 +3917,8 @@ msgid ""
39173917"the position of *sub*. To check if *sub* is a substring or not, use the "
39183918":keyword:`in` operator::"
39193919msgstr ""
3920- ":meth:`~bytes.find` 메서드는 *sub* 의 위치를 알아야 할 경우에만 사용해야 합니다. *sub* 가 서브 "
3921- "시퀀스인지 여부를 확인하려면 :keyword:`in` 연산자를 사용하십시오::"
3920+ ":meth:`~bytes.find` 메서드는 *sub* 의 위치를 알아야 할 경우에만 사용해야 합니다. *sub* 가 부분 "
3921+ "문자열인지 여부를 확인하려면 :keyword:`in` 연산자를 사용하십시오::"
39223922
39233923#: ../Doc/library/stdtypes.rst:2584
39243924msgid ""
0 commit comments