├── .github └── workflows │ └── main.yml ├── .gitignore ├── .vuepress ├── config.js ├── sidebar.js └── styles │ └── index.styl ├── Basics ├── 01-파이썬 설치하기 │ ├── README.md │ ├── pythonorg01.png │ ├── pythonorg02-download.png │ ├── pythonorg03-install.png │ ├── pythonorg04-check.png │ ├── pythonorg05-idle.png │ ├── pythonorg06-idle-newfile.png │ └── pythonorg06-idle-newfile2.png ├── 02-variables_and_types │ └── var_and_basic_types.py ├── 02-변수와 타입 │ ├── README.md │ └── img01-variable.jpg ├── 03-기본 콘솔 입출력 │ ├── 01-console.png │ ├── README.md │ └── builtin_IOs.py ├── 04-연산자 │ ├── README.md │ └── operators.py ├── 05-타입 변환과 묶음 타입들 (collections) │ ├── README.md │ └── casting_and_containers.py ├── 06-조건문 │ ├── README.md │ └── condition.py ├── 07-반복문 │ ├── README.md │ └── loop.py ├── 08-함수 │ ├── Function_machine2.svg │ ├── README.md │ └── function.py └── README.md ├── Object Oriented Programming ├── 1회차 │ ├── README.md │ └── code.py ├── 2회차 │ └── README.md └── README.md ├── Projects ├── 01-Basics_Practice │ ├── README.md │ ├── project01_369_easy.py │ └── project01_369_hard.py └── 02-SimpleRPG │ └── README.md ├── Python_Grammers ├── 01-FileIO │ ├── README.md │ └── sample_text.txt ├── 02-String_methods │ ├── README.md │ └── string.py └── README.md ├── README.md ├── Tips ├── 01-Google_It │ ├── README.md │ ├── google_python_function.png │ └── google_valueerror.png ├── 02-StackOverflow │ ├── README.md │ ├── google_error_stackoverflow.png │ ├── stackoverflow_answer.png │ └── stackoverflow_question.png ├── 03-RegEx │ └── README.md └── README.md ├── package.json ├── vuepress.md └── yarn.lock /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/.vuepress/config.js -------------------------------------------------------------------------------- /.vuepress/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/.vuepress/sidebar.js -------------------------------------------------------------------------------- /.vuepress/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/.vuepress/styles/index.styl -------------------------------------------------------------------------------- /Basics/01-파이썬 설치하기/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/01-파이썬 설치하기/README.md -------------------------------------------------------------------------------- /Basics/01-파이썬 설치하기/pythonorg01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/01-파이썬 설치하기/pythonorg01.png -------------------------------------------------------------------------------- /Basics/01-파이썬 설치하기/pythonorg02-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/01-파이썬 설치하기/pythonorg02-download.png -------------------------------------------------------------------------------- /Basics/01-파이썬 설치하기/pythonorg03-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/01-파이썬 설치하기/pythonorg03-install.png -------------------------------------------------------------------------------- /Basics/01-파이썬 설치하기/pythonorg04-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/01-파이썬 설치하기/pythonorg04-check.png -------------------------------------------------------------------------------- /Basics/01-파이썬 설치하기/pythonorg05-idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/01-파이썬 설치하기/pythonorg05-idle.png -------------------------------------------------------------------------------- /Basics/01-파이썬 설치하기/pythonorg06-idle-newfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/01-파이썬 설치하기/pythonorg06-idle-newfile.png -------------------------------------------------------------------------------- /Basics/01-파이썬 설치하기/pythonorg06-idle-newfile2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/01-파이썬 설치하기/pythonorg06-idle-newfile2.png -------------------------------------------------------------------------------- /Basics/02-variables_and_types/var_and_basic_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/02-variables_and_types/var_and_basic_types.py -------------------------------------------------------------------------------- /Basics/02-변수와 타입/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/02-변수와 타입/README.md -------------------------------------------------------------------------------- /Basics/02-변수와 타입/img01-variable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/02-변수와 타입/img01-variable.jpg -------------------------------------------------------------------------------- /Basics/03-기본 콘솔 입출력/01-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/03-기본 콘솔 입출력/01-console.png -------------------------------------------------------------------------------- /Basics/03-기본 콘솔 입출력/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/03-기본 콘솔 입출력/README.md -------------------------------------------------------------------------------- /Basics/03-기본 콘솔 입출력/builtin_IOs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/03-기본 콘솔 입출력/builtin_IOs.py -------------------------------------------------------------------------------- /Basics/04-연산자/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/04-연산자/README.md -------------------------------------------------------------------------------- /Basics/04-연산자/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/04-연산자/operators.py -------------------------------------------------------------------------------- /Basics/05-타입 변환과 묶음 타입들 (collections)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/05-타입 변환과 묶음 타입들 (collections)/README.md -------------------------------------------------------------------------------- /Basics/05-타입 변환과 묶음 타입들 (collections)/casting_and_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/05-타입 변환과 묶음 타입들 (collections)/casting_and_containers.py -------------------------------------------------------------------------------- /Basics/06-조건문/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/06-조건문/README.md -------------------------------------------------------------------------------- /Basics/06-조건문/condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/06-조건문/condition.py -------------------------------------------------------------------------------- /Basics/07-반복문/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/07-반복문/README.md -------------------------------------------------------------------------------- /Basics/07-반복문/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/07-반복문/loop.py -------------------------------------------------------------------------------- /Basics/08-함수/Function_machine2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/08-함수/Function_machine2.svg -------------------------------------------------------------------------------- /Basics/08-함수/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/08-함수/README.md -------------------------------------------------------------------------------- /Basics/08-함수/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/08-함수/function.py -------------------------------------------------------------------------------- /Basics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Basics/README.md -------------------------------------------------------------------------------- /Object Oriented Programming/1회차/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Object Oriented Programming/1회차/README.md -------------------------------------------------------------------------------- /Object Oriented Programming/1회차/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Object Oriented Programming/1회차/code.py -------------------------------------------------------------------------------- /Object Oriented Programming/2회차/README.md: -------------------------------------------------------------------------------- 1 | # OOP - 2회차 2 | ⚠ 작성중입니다. ⚠ -------------------------------------------------------------------------------- /Object Oriented Programming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Object Oriented Programming/README.md -------------------------------------------------------------------------------- /Projects/01-Basics_Practice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Projects/01-Basics_Practice/README.md -------------------------------------------------------------------------------- /Projects/01-Basics_Practice/project01_369_easy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Projects/01-Basics_Practice/project01_369_easy.py -------------------------------------------------------------------------------- /Projects/01-Basics_Practice/project01_369_hard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Projects/01-Basics_Practice/project01_369_hard.py -------------------------------------------------------------------------------- /Projects/02-SimpleRPG/README.md: -------------------------------------------------------------------------------- 1 | # 프로젝트 2 2 | -------------------------------------------------------------------------------- /Python_Grammers/01-FileIO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Python_Grammers/01-FileIO/README.md -------------------------------------------------------------------------------- /Python_Grammers/01-FileIO/sample_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Python_Grammers/01-FileIO/sample_text.txt -------------------------------------------------------------------------------- /Python_Grammers/02-String_methods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Python_Grammers/02-String_methods/README.md -------------------------------------------------------------------------------- /Python_Grammers/02-String_methods/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Python_Grammers/02-String_methods/string.py -------------------------------------------------------------------------------- /Python_Grammers/README.md: -------------------------------------------------------------------------------- 1 | # 파이썬의 문법들 - 1부 2 | 1. [파일 입출력](./01-FileIO/README.md) 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/README.md -------------------------------------------------------------------------------- /Tips/01-Google_It/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Tips/01-Google_It/README.md -------------------------------------------------------------------------------- /Tips/01-Google_It/google_python_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Tips/01-Google_It/google_python_function.png -------------------------------------------------------------------------------- /Tips/01-Google_It/google_valueerror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Tips/01-Google_It/google_valueerror.png -------------------------------------------------------------------------------- /Tips/02-StackOverflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Tips/02-StackOverflow/README.md -------------------------------------------------------------------------------- /Tips/02-StackOverflow/google_error_stackoverflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Tips/02-StackOverflow/google_error_stackoverflow.png -------------------------------------------------------------------------------- /Tips/02-StackOverflow/stackoverflow_answer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Tips/02-StackOverflow/stackoverflow_answer.png -------------------------------------------------------------------------------- /Tips/02-StackOverflow/stackoverflow_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Tips/02-StackOverflow/stackoverflow_question.png -------------------------------------------------------------------------------- /Tips/03-RegEx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Tips/03-RegEx/README.md -------------------------------------------------------------------------------- /Tips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/Tips/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/package.json -------------------------------------------------------------------------------- /vuepress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/vuepress.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis0875/KoreanPythonTutorial/HEAD/yarn.lock --------------------------------------------------------------------------------