forked from labex-labs/python-cheatsheet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathko.json
More file actions
151 lines (151 loc) · 5.99 KB
/
ko.json
File metadata and controls
151 lines (151 loc) · 5.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"sidebar": {
"introduction": "소개",
"cheatsheet": "치트 시트",
"standardLibrary": "표준 라이브러리",
"builtinFunctions": "내장 함수",
"gettingStarted": "시작하기"
},
"navbar": {
"blog": "블로그",
"pythonCheatsheetPdf": "Python 치트 시트 PDF",
"repositoryLink": "Python 치트 시트 저장소",
"login": "로그인"
},
"footer": {
"moreCheatsheets": "더 많은 치트 시트"
},
"mobile": {
"openNavigation": "네비게이션 열기",
"closeNavigation": "네비게이션 닫기",
"navigation": "네비게이션"
},
"common": {
"language": "언어",
"practiceInLabexVm": "LabEx VM 에서 연습하기",
"previousPage": "이전 페이지",
"nextPage": "다음 페이지",
"localeNames": {
"en": "English",
"zh": "中文",
"es": "Español",
"fr": "Français",
"de": "Deutsch",
"ja": "日本語",
"ru": "Русский",
"ko": "한국어",
"pt": "Português"
}
},
"error404": {
"title": "404 찾을 수 없음",
"error": "404 오류",
"pageNotFound": "페이지를 찾을 수 없습니다.",
"description": "죄송합니다. 찾고 계신 페이지를 찾을 수 없습니다.",
"goBackHome": "홈으로 돌아가기"
},
"home": {
"title": "Python 치트 시트",
"anyoneCanForget": "누구나 잊을 수 있습니다:",
"makeCharacterClasses": "정규식의 문자 클래스를 만드는 방법",
"forRegex": "을 (를),",
"sliceAList": "리스트를 슬라이스하는 방법",
"orDoA": "또는",
"forLoop": "for 루프를 실행하는 방법",
"description": "이 Python 치트 시트는 초보자와 고급 개발자를 위한 기본 참조를 제공하고, 신규 사용자의 진입 장벽을 낮추며, 베테랑이 오래된 트릭을 새로 고치는 데 도움을 주려고 합니다. 모든",
"contributors": "기여자",
"onGithub": "를 GitHub 에서 확인하세요.",
"cardLinks": {
"viewOnGithub": "GitHub 에서 보기",
"viewOnGithubDesc": "이 프로젝트가 유용하다고 생각되면 GitHub 에서 별표를 남겨주세요.",
"pythonPlayground": "Python Playground",
"pythonPlaygroundDesc": "대화형 온라인 환경에서 Python 코드를 시도해보세요.",
"pythonCourse": "Python 코스",
"pythonCourseDesc": "대화형 실습 랩으로 Python 을 배우고 Python 프로그래밍을 마스터하세요.",
"contribute": "기여하기",
"contributeDesc": "Python 치트 시트에 기여하는 것이 얼마나 쉬운지 알아보세요.",
"blog": "블로그",
"blogDesc": "Python 과 그 생태계에 대한 자세한 기사를 읽으세요.",
"changelog": "변경 로그",
"changelogDesc": "새로운 기능, 수정된 내용 및 향후 계획을 확인하세요."
},
"disclaimer": {
"title": "Python Cheat Sheet 가 이제 LabEx 의 일부가 되었습니다!",
"content": "이제 인터랙티브 랩, PDF 다운로드, 내장 함수 모듈, 퀴즈 문제, 다국어 지원 (🇨🇳 🇯🇵 🇪🇸 🇩🇪 🇫🇷 🇵🇹 🇰🇷 🇷🇺) 을 제공하며, 여전히 오픈 소스이며 항상 그렇듯이 무료입니다."
}
},
"blog": {
"previous": "이전",
"newerPosts": "최신 게시물",
"next": "다음",
"olderPosts": "이전 게시물",
"readArticle": "글 읽기",
"title": "블로그 - Python 치트 시트",
"description": "이 기사들은 Python 치트 시트의 내용을 더 깊이 살펴봅니다."
},
"navigation": {
"cheatsheet": {
"basics": "기초",
"built-in-functions": "내장 함수",
"control-flow": "제어 흐름",
"functions": "함수",
"lists-and-tuples": "리스트와 튜플",
"dictionaries": "딕셔너리",
"sets": "세트",
"comprehensions": "컴프리헨션",
"manipulating-strings": "문자열 조작",
"string-formatting": "문자열 포맷팅",
"regular-expressions": "정규 표현식",
"file-directory-path": "파일 및 디렉토리 경로",
"reading-and-writing-files": "파일 읽기 및 쓰기",
"json-yaml": "JSON 및 YAML",
"exception-handling": "예외 처리",
"debugging": "디버깅",
"args-and-kwargs": "Args 및 kwargs",
"decorators": "데코레이터",
"context-manager": "컨텍스트 매니저",
"oop-basics": "OOP",
"dataclasses": "데이터 클래스",
"setup-py": "setup.py",
"main": "메인: 최상위 스크립트",
"virtual-environments": "가상 환경"
},
"modules": {
"copy-module": "Copy",
"csv-module": "CSV",
"datetime-module": "Datetime",
"itertools-module": "Itertools",
"json-module": "JSON",
"os-module": "OS",
"pathlib-module": "Pathlib",
"random-module": "Random",
"shelve-module": "Shelve",
"zipfile-module": "Zipfile"
}
},
"codeBlock": {
"copy": "복사",
"copied": "복사됨",
"expand": "펼치기",
"collapse": "접기"
},
"quiz": {
"label": "퀴즈",
"correct": "정답",
"wrong": "오답",
"correctAnswer": "정답",
"completions": "회 완료",
"completion": "회 완료",
"totalCompletions": "총 완료 횟수",
"completed": "완료됨",
"notCompleted": "미완료",
"loginToUnlockDesc": "로그인하여 이 퀴즈에 답하고 학습 진행 상황을 추적하세요",
"loginRefreshDesc": "로그인 후 이 페이지를 새로고침하여 계속하세요",
"refresh": "새로고침"
},
"meta": {
"title": "Python 치트 시트 – 초보자를 위한 Python 기초",
"description": "가장 완전한 온라인 Python 치트 시트. 대화형 랩으로 단계별 학습, 무료 PDF 치트 시트 다운로드, 초보자 친화적 Python 가이드 탐색.",
"keywords": "python 치트 시트, python cheatsheet, python 기초, python 문법 가이드, python 참조, python 배우기, python pdf 치트 시트"
}
}