From 3670b7000e417437d909efd8e2882235eb599a30 Mon Sep 17 00:00:00 2001 From: jshyun1 Date: Fri, 9 Dec 2022 11:32:23 +0900 Subject: [PATCH] kor ver --- Korean/04_strings_ko.md | 26 +++++++++++++------------- Korean/10_loops_ko.md | 4 ++-- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Korean/04_strings_ko.md b/Korean/04_strings_ko.md index dc74f7c3..a5e1d774 100644 --- a/Korean/04_strings_ko.md +++ b/Korean/04_strings_ko.md @@ -10,20 +10,20 @@ - [Day 4](#day-4) - [문자열](#strings) - - [문자열 만들기](#creating-a-string) - - [문자열 연결](#string-concatenation) - - [문자열의 이스케이프 시퀀스](#escape-sequences-in-strings) - - [문자열 포매팅](#string-formatting) - - [올드 스타일 문자열 포매팅(% 연산자)](#old-style-string-formatting--operator) - - [새로운 스타일 문자열 포매팅(str.format)](#new-style-string-formatting-strformat) + - [문자열 만들기](#문자열-만들기) + - [문자열 연결](#문자열-연결) + - [문자열의 이스케이프 시퀀스](#문자열의-이스케이프-시퀀스) + - [문자열 포매팅](#문자열-포매팅) + - [올드 스타일 문자열 포매팅(% 연산자)](#올드-스타일-문자열-포매팅%-연산자) + - [새로운 스타일 문자열 포매팅(str.format)](#새로운-스타일-문자열-포매팅str.format) - [문자열 Interpolation / f-Strings (Python 3.6+)](#string-interpolation--f-strings-python-36) - - [문자 시퀀스로서의 Python 문자열](#python-strings-as-sequences-of-characters) - - [언패킹 문자](#unpacking-characters) - - [인덱스로 문자열의 문자에 액세스](#accessing-characters-in-strings-by-index) - - [파이썬 문자열 슬라이싱](#slicing-python-strings) - - [문자열 리버스](#reversing-a-string) - - [슬라이싱하는 동안 문자 건너뛰기](#skipping-characters-while-slicing) - - [문자열 메서드](#string-methods) + - [문자 시퀀스로서의 Python 문자열](#문자-시퀀스로서의-Python-문자열) + - [언패킹 문자](#언패킹-문자) + - [인덱스로 문자열의 문자에 액세스](#인덱스로-문자열의-문자에-액세스) + - [파이썬 문자열 슬라이싱](#파이썬-문자열-슬라이싱) + - [문자열 리버스](#문자열-리버스) + - [슬라이싱하는 동안 문자 건너뛰기](#슬라이싱하는-동안-문자-건너뛰기) + - [문자열 메서드](#문자열-메서드) - [💻 Exercises - Day 4](#-exercises---day-4) # Day 4 diff --git a/Korean/10_loops_ko.md b/Korean/10_loops_ko.md index 408d943c..0b6f58d9 100644 --- a/Korean/10_loops_ko.md +++ b/Korean/10_loops_ko.md @@ -10,9 +10,9 @@ - [📘 Day 10](#-day-10) - [Loops](#loops) - [While 루프](#while-루프) - - [Break 과 Continue - Part 1](#break-and-continue---part-1) + - [Break 과 Continue - Part 1](#break-과-continue---part-1) - [For 루프](#for-루프) - - [Break 과 Continue - Part 2](#break-and-continue---part-2) + - [Break 과 Continue - Part 2](#break-과-continue---part-2) - [범위 기능](#범위-기능) - [중첩 For 루프](#중첩-for-루프) - [For Else](#for-else)