@@ -2363,7 +2363,7 @@ msgid ""
2363
2363
"the range [*start*, *end*]. Optional arguments *start* and *end* are "
2364
2364
"interpreted as in slice notation."
2365
2365
msgstr ""
2366
- "범위 [*start*, *end*] 에서 서브 스트링 *sub* 가 중첩되지 않고 등장하는 횟수를 돌려줍니다. 선택적 인자 "
2366
+ "범위 [*start*, *end*] 에서 부분 문자열 *sub* 가 중첩되지 않고 등장하는 횟수를 돌려줍니다. 선택적 인자 "
2367
2367
"*start* 와 *end* 는 슬라이스 표기법으로 해석됩니다."
2368
2368
2369
2369
#: ../Doc/library/stdtypes.rst:1539
@@ -2428,7 +2428,7 @@ msgid ""
2428
2428
"are interpreted as in slice notation. Return ``-1`` if *sub* is not "
2429
2429
"found."
2430
2430
msgstr ""
2431
- "서브 스트링 *sub* 가 슬라이스 ``s[start:end]`` 내에 등장하는 가장 작은 문자열의 인덱스를 돌려줍니다. 선택적 "
2431
+ "부분 문자열 *sub* 가 슬라이스 ``s[start:end]`` 내에 등장하는 가장 작은 문자열의 인덱스를 돌려줍니다. 선택적 "
2432
2432
"인자 *start* 와 *end* 는 슬라이스 표기법으로 해석됩니다. *sub* 가 없으면 ``-1`` 을 돌려줍니다."
2433
2433
2434
2434
#: ../Doc/library/stdtypes.rst:1589
@@ -2437,7 +2437,7 @@ msgid ""
2437
2437
"position of *sub*. To check if *sub* is a substring or not, use the "
2438
2438
":keyword:`in` operator::"
2439
2439
msgstr ""
2440
- ":meth:`~str.find` 메서드는 *sub* 의 위치를 알아야 할 경우에만 사용해야 합니다. *sub* 가 서브 스트링인지 "
2440
+ ":meth:`~str.find` 메서드는 *sub* 의 위치를 알아야 할 경우에만 사용해야 합니다. *sub* 가 부분 문자열인지 "
2441
2441
"확인하려면 :keyword:`in` 연산자를 사용하십시오::"
2442
2442
2443
2443
#: ../Doc/library/stdtypes.rst:1599
@@ -2498,7 +2498,7 @@ msgstr ""
2498
2498
msgid ""
2499
2499
"Like :meth:`~str.find`, but raise :exc:`ValueError` when the substring is"
2500
2500
" not found."
2501
- msgstr ":meth:`~str.find` 과 비슷하지만, 서브 스트링을 찾을 수 없는 경우 :exc:`ValueError` 를 일으킵니다."
2501
+ msgstr ":meth:`~str.find` 과 비슷하지만, 부분 문자열을 찾을 수 없는 경우 :exc:`ValueError` 를 일으킵니다."
2502
2502
2503
2503
#: ../Doc/library/stdtypes.rst:1652
2504
2504
msgid ""
@@ -2731,7 +2731,7 @@ msgid ""
2731
2731
"replaced by *new*. If the optional argument *count* is given, only the "
2732
2732
"first *count* occurrences are replaced."
2733
2733
msgstr ""
2734
- "모든 서브 스트링 *old* 가 *new* 로 치환된 문자열의 복사본을 돌려줍니다. 선택적 인자 *count* 가 주어지면, 앞의 "
2734
+ "모든 부분 문자열 *old* 가 *new* 로 치환된 문자열의 복사본을 돌려줍니다. 선택적 인자 *count* 가 주어지면, 앞의 "
2735
2735
"*count* 개만 치환됩니다."
2736
2736
2737
2737
#: ../Doc/library/stdtypes.rst:1820
@@ -2741,15 +2741,15 @@ msgid ""
2741
2741
" *start* and *end* are interpreted as in slice notation. Return ``-1`` "
2742
2742
"on failure."
2743
2743
msgstr ""
2744
- "서브 스트링 *sub* 가 ``s[start:end]`` 내에 등장하는 가장 큰 문자열의 인덱스를 돌려줍니다. 선택적 인자 "
2744
+ "부분 문자열 *sub* 가 ``s[start:end]`` 내에 등장하는 가장 큰 문자열의 인덱스를 돌려줍니다. 선택적 인자 "
2745
2745
"*start* 와 *end* 는 슬라이스 표기법으로 해석됩니다. 실패하면 ``-1`` 을 돌려줍니다."
2746
2746
2747
2747
#: ../Doc/library/stdtypes.rst:1827
2748
2748
msgid ""
2749
2749
"Like :meth:`rfind` but raises :exc:`ValueError` when the substring *sub* "
2750
2750
"is not found."
2751
2751
msgstr ""
2752
- ":meth:`rfind`\\ 와 비슷하지만, 서브 스트링 *sub* 를 찾을 수 없는 경우 :exc:`ValueError` 를 "
2752
+ ":meth:`rfind`\\ 와 비슷하지만, 부분 문자열 *sub* 를 찾을 수 없는 경우 :exc:`ValueError` 를 "
2753
2753
"일으킵니다."
2754
2754
2755
2755
#: ../Doc/library/stdtypes.rst:1833
@@ -3917,8 +3917,8 @@ msgid ""
3917
3917
"the position of *sub*. To check if *sub* is a substring or not, use the "
3918
3918
":keyword:`in` operator::"
3919
3919
msgstr ""
3920
- ":meth:`~bytes.find` 메서드는 *sub* 의 위치를 알아야 할 경우에만 사용해야 합니다. *sub* 가 서브 "
3921
- "시퀀스인지 여부를 확인하려면 :keyword:`in` 연산자를 사용하십시오::"
3920
+ ":meth:`~bytes.find` 메서드는 *sub* 의 위치를 알아야 할 경우에만 사용해야 합니다. *sub* 가 부분 "
3921
+ "문자열인지 여부를 확인하려면 :keyword:`in` 연산자를 사용하십시오::"
3922
3922
3923
3923
#: ../Doc/library/stdtypes.rst:2584
3924
3924
msgid ""
0 commit comments