├── .gitignore ├── .nojekyll ├── .tx └── config ├── README.rst ├── _static └── index.html ├── create_tx.sh ├── doc-requirements.txt ├── fabfile.py ├── requirements.txt └── source ├── _locales └── de │ └── LC_MESSAGES │ ├── pybeginners.mo │ └── pybeginners.po ├── _static ├── custom.css └── spoilers.js ├── _templates ├── layout.html ├── navbartoc.html ├── relations.html └── sourcelink.html ├── conditional_loops.rst ├── conditionals.rst ├── conf.py ├── copyright.rst ├── functions.rst ├── functions_parameters.rst ├── getting_started.rst ├── images ├── cc-by-sa.png ├── dashed.png ├── dashedprogressing.png ├── default.png ├── floorplan.jpg ├── forward.png ├── hexagon.png ├── honeycomb.png ├── house.png ├── it_uni_copen_2.jpg ├── left.png ├── ots_logo_fb.png ├── ots_logo_v.png ├── progress.gif ├── rectangle.png ├── shapes.png ├── square.png ├── tiltedsquares.png └── triangle.png ├── index.rst ├── locale ├── de │ └── LC_MESSAGES │ │ ├── conditional_loops.po │ │ ├── conditionals.po │ │ ├── copyright.po │ │ ├── functions.po │ │ ├── functions_parameters.po │ │ ├── getting_started.po │ │ ├── index.po │ │ ├── logical_operators.po │ │ ├── loops.po │ │ ├── simple_drawing.po │ │ ├── variables.po │ │ └── where_to_go.po ├── en │ └── LC_MESSAGES │ │ ├── conditional_loops.po │ │ ├── conditionals.po │ │ ├── copyright.po │ │ ├── functions.po │ │ ├── functions_parameters.po │ │ ├── getting_started.po │ │ ├── index.po │ │ ├── logical_operators.po │ │ ├── loops.po │ │ ├── simple_drawing.po │ │ ├── variables.po │ │ └── where_to_go.po ├── es_CL │ └── LC_MESSAGES │ │ ├── conditional_loops.po │ │ ├── conditionals.po │ │ ├── copyright.po │ │ ├── functions.po │ │ ├── functions_parameters.po │ │ ├── getting_started.po │ │ ├── index.po │ │ ├── logical_operators.po │ │ ├── loops.po │ │ ├── simple_drawing.po │ │ ├── variables.po │ │ └── where_to_go.po ├── fr │ └── LC_MESSAGES │ │ ├── conditional_loops.po │ │ ├── conditionals.po │ │ ├── copyright.po │ │ ├── functions.po │ │ ├── functions_parameters.po │ │ ├── getting_started.po │ │ ├── index.po │ │ ├── logical_operators.po │ │ ├── loops.po │ │ ├── simple_drawing.po │ │ ├── variables.po │ │ └── where_to_go.po ├── ko │ └── LC_MESSAGES │ │ ├── conditional_loops.po │ │ ├── conditionals.po │ │ ├── copyright.po │ │ ├── functions.po │ │ ├── functions_parameters.po │ │ ├── getting_started.po │ │ ├── index.po │ │ ├── logical_operators.po │ │ ├── loops.po │ │ ├── simple_drawing.po │ │ ├── variables.po │ │ └── where_to_go.po ├── ro │ └── LC_MESSAGES │ │ ├── conditional_loops.po │ │ ├── conditionals.po │ │ ├── copyright.po │ │ ├── functions.po │ │ ├── functions_parameters.po │ │ ├── getting_started.po │ │ ├── index.po │ │ ├── logical_operators.po │ │ ├── loops.po │ │ ├── simple_drawing.po │ │ ├── variables.po │ │ └── where_to_go.po └── ru │ └── LC_MESSAGES │ ├── conditional_loops.po │ ├── conditionals.po │ ├── copyright.po │ ├── functions.po │ ├── functions_parameters.po │ ├── getting_started.po │ ├── index.po │ ├── logical_operators.po │ ├── loops.po │ ├── simple_drawing.po │ ├── variables.po │ └── where_to_go.po ├── logical_operators.rst ├── loops.rst ├── simple_drawing.rst ├── variables.rst └── where_to_go.rst /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/.tx/config -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/README.rst -------------------------------------------------------------------------------- /_static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/_static/index.html -------------------------------------------------------------------------------- /create_tx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/create_tx.sh -------------------------------------------------------------------------------- /doc-requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx-bootstrap-theme 2 | -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/fabfile.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/requirements.txt -------------------------------------------------------------------------------- /source/_locales/de/LC_MESSAGES/pybeginners.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/_locales/de/LC_MESSAGES/pybeginners.mo -------------------------------------------------------------------------------- /source/_locales/de/LC_MESSAGES/pybeginners.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/_locales/de/LC_MESSAGES/pybeginners.po -------------------------------------------------------------------------------- /source/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/_static/custom.css -------------------------------------------------------------------------------- /source/_static/spoilers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/_static/spoilers.js -------------------------------------------------------------------------------- /source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/_templates/layout.html -------------------------------------------------------------------------------- /source/_templates/navbartoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/_templates/navbartoc.html -------------------------------------------------------------------------------- /source/_templates/relations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/_templates/relations.html -------------------------------------------------------------------------------- /source/_templates/sourcelink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/_templates/sourcelink.html -------------------------------------------------------------------------------- /source/conditional_loops.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/conditional_loops.rst -------------------------------------------------------------------------------- /source/conditionals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/conditionals.rst -------------------------------------------------------------------------------- /source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/conf.py -------------------------------------------------------------------------------- /source/copyright.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/copyright.rst -------------------------------------------------------------------------------- /source/functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/functions.rst -------------------------------------------------------------------------------- /source/functions_parameters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/functions_parameters.rst -------------------------------------------------------------------------------- /source/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/getting_started.rst -------------------------------------------------------------------------------- /source/images/cc-by-sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/cc-by-sa.png -------------------------------------------------------------------------------- /source/images/dashed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/dashed.png -------------------------------------------------------------------------------- /source/images/dashedprogressing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/dashedprogressing.png -------------------------------------------------------------------------------- /source/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/default.png -------------------------------------------------------------------------------- /source/images/floorplan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/floorplan.jpg -------------------------------------------------------------------------------- /source/images/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/forward.png -------------------------------------------------------------------------------- /source/images/hexagon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/hexagon.png -------------------------------------------------------------------------------- /source/images/honeycomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/honeycomb.png -------------------------------------------------------------------------------- /source/images/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/house.png -------------------------------------------------------------------------------- /source/images/it_uni_copen_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/it_uni_copen_2.jpg -------------------------------------------------------------------------------- /source/images/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/left.png -------------------------------------------------------------------------------- /source/images/ots_logo_fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/ots_logo_fb.png -------------------------------------------------------------------------------- /source/images/ots_logo_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/ots_logo_v.png -------------------------------------------------------------------------------- /source/images/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/progress.gif -------------------------------------------------------------------------------- /source/images/rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/rectangle.png -------------------------------------------------------------------------------- /source/images/shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/shapes.png -------------------------------------------------------------------------------- /source/images/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/square.png -------------------------------------------------------------------------------- /source/images/tiltedsquares.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/tiltedsquares.png -------------------------------------------------------------------------------- /source/images/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/images/triangle.png -------------------------------------------------------------------------------- /source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/index.rst -------------------------------------------------------------------------------- /source/locale/de/LC_MESSAGES/conditional_loops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/de/LC_MESSAGES/conditional_loops.po -------------------------------------------------------------------------------- /source/locale/de/LC_MESSAGES/conditionals.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/de/LC_MESSAGES/conditionals.po -------------------------------------------------------------------------------- /source/locale/de/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/de/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /source/locale/de/LC_MESSAGES/functions.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/de/LC_MESSAGES/functions.po -------------------------------------------------------------------------------- /source/locale/de/LC_MESSAGES/functions_parameters.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/de/LC_MESSAGES/functions_parameters.po -------------------------------------------------------------------------------- /source/locale/de/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/de/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /source/locale/de/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/de/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /source/locale/de/LC_MESSAGES/logical_operators.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/de/LC_MESSAGES/logical_operators.po -------------------------------------------------------------------------------- /source/locale/de/LC_MESSAGES/loops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/de/LC_MESSAGES/loops.po -------------------------------------------------------------------------------- /source/locale/de/LC_MESSAGES/simple_drawing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/de/LC_MESSAGES/simple_drawing.po -------------------------------------------------------------------------------- /source/locale/de/LC_MESSAGES/variables.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/de/LC_MESSAGES/variables.po -------------------------------------------------------------------------------- /source/locale/de/LC_MESSAGES/where_to_go.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/de/LC_MESSAGES/where_to_go.po -------------------------------------------------------------------------------- /source/locale/en/LC_MESSAGES/conditional_loops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/en/LC_MESSAGES/conditional_loops.po -------------------------------------------------------------------------------- /source/locale/en/LC_MESSAGES/conditionals.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/en/LC_MESSAGES/conditionals.po -------------------------------------------------------------------------------- /source/locale/en/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/en/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /source/locale/en/LC_MESSAGES/functions.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/en/LC_MESSAGES/functions.po -------------------------------------------------------------------------------- /source/locale/en/LC_MESSAGES/functions_parameters.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/en/LC_MESSAGES/functions_parameters.po -------------------------------------------------------------------------------- /source/locale/en/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/en/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /source/locale/en/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/en/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /source/locale/en/LC_MESSAGES/logical_operators.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/en/LC_MESSAGES/logical_operators.po -------------------------------------------------------------------------------- /source/locale/en/LC_MESSAGES/loops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/en/LC_MESSAGES/loops.po -------------------------------------------------------------------------------- /source/locale/en/LC_MESSAGES/simple_drawing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/en/LC_MESSAGES/simple_drawing.po -------------------------------------------------------------------------------- /source/locale/en/LC_MESSAGES/variables.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/en/LC_MESSAGES/variables.po -------------------------------------------------------------------------------- /source/locale/en/LC_MESSAGES/where_to_go.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/en/LC_MESSAGES/where_to_go.po -------------------------------------------------------------------------------- /source/locale/es_CL/LC_MESSAGES/conditional_loops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/es_CL/LC_MESSAGES/conditional_loops.po -------------------------------------------------------------------------------- /source/locale/es_CL/LC_MESSAGES/conditionals.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/es_CL/LC_MESSAGES/conditionals.po -------------------------------------------------------------------------------- /source/locale/es_CL/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/es_CL/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /source/locale/es_CL/LC_MESSAGES/functions.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/es_CL/LC_MESSAGES/functions.po -------------------------------------------------------------------------------- /source/locale/es_CL/LC_MESSAGES/functions_parameters.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/es_CL/LC_MESSAGES/functions_parameters.po -------------------------------------------------------------------------------- /source/locale/es_CL/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/es_CL/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /source/locale/es_CL/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/es_CL/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /source/locale/es_CL/LC_MESSAGES/logical_operators.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/es_CL/LC_MESSAGES/logical_operators.po -------------------------------------------------------------------------------- /source/locale/es_CL/LC_MESSAGES/loops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/es_CL/LC_MESSAGES/loops.po -------------------------------------------------------------------------------- /source/locale/es_CL/LC_MESSAGES/simple_drawing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/es_CL/LC_MESSAGES/simple_drawing.po -------------------------------------------------------------------------------- /source/locale/es_CL/LC_MESSAGES/variables.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/es_CL/LC_MESSAGES/variables.po -------------------------------------------------------------------------------- /source/locale/es_CL/LC_MESSAGES/where_to_go.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/es_CL/LC_MESSAGES/where_to_go.po -------------------------------------------------------------------------------- /source/locale/fr/LC_MESSAGES/conditional_loops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/fr/LC_MESSAGES/conditional_loops.po -------------------------------------------------------------------------------- /source/locale/fr/LC_MESSAGES/conditionals.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/fr/LC_MESSAGES/conditionals.po -------------------------------------------------------------------------------- /source/locale/fr/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/fr/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /source/locale/fr/LC_MESSAGES/functions.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/fr/LC_MESSAGES/functions.po -------------------------------------------------------------------------------- /source/locale/fr/LC_MESSAGES/functions_parameters.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/fr/LC_MESSAGES/functions_parameters.po -------------------------------------------------------------------------------- /source/locale/fr/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/fr/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /source/locale/fr/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/fr/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /source/locale/fr/LC_MESSAGES/logical_operators.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/fr/LC_MESSAGES/logical_operators.po -------------------------------------------------------------------------------- /source/locale/fr/LC_MESSAGES/loops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/fr/LC_MESSAGES/loops.po -------------------------------------------------------------------------------- /source/locale/fr/LC_MESSAGES/simple_drawing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/fr/LC_MESSAGES/simple_drawing.po -------------------------------------------------------------------------------- /source/locale/fr/LC_MESSAGES/variables.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/fr/LC_MESSAGES/variables.po -------------------------------------------------------------------------------- /source/locale/fr/LC_MESSAGES/where_to_go.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/fr/LC_MESSAGES/where_to_go.po -------------------------------------------------------------------------------- /source/locale/ko/LC_MESSAGES/conditional_loops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ko/LC_MESSAGES/conditional_loops.po -------------------------------------------------------------------------------- /source/locale/ko/LC_MESSAGES/conditionals.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ko/LC_MESSAGES/conditionals.po -------------------------------------------------------------------------------- /source/locale/ko/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ko/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /source/locale/ko/LC_MESSAGES/functions.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ko/LC_MESSAGES/functions.po -------------------------------------------------------------------------------- /source/locale/ko/LC_MESSAGES/functions_parameters.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ko/LC_MESSAGES/functions_parameters.po -------------------------------------------------------------------------------- /source/locale/ko/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ko/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /source/locale/ko/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ko/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /source/locale/ko/LC_MESSAGES/logical_operators.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ko/LC_MESSAGES/logical_operators.po -------------------------------------------------------------------------------- /source/locale/ko/LC_MESSAGES/loops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ko/LC_MESSAGES/loops.po -------------------------------------------------------------------------------- /source/locale/ko/LC_MESSAGES/simple_drawing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ko/LC_MESSAGES/simple_drawing.po -------------------------------------------------------------------------------- /source/locale/ko/LC_MESSAGES/variables.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ko/LC_MESSAGES/variables.po -------------------------------------------------------------------------------- /source/locale/ko/LC_MESSAGES/where_to_go.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ko/LC_MESSAGES/where_to_go.po -------------------------------------------------------------------------------- /source/locale/ro/LC_MESSAGES/conditional_loops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ro/LC_MESSAGES/conditional_loops.po -------------------------------------------------------------------------------- /source/locale/ro/LC_MESSAGES/conditionals.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ro/LC_MESSAGES/conditionals.po -------------------------------------------------------------------------------- /source/locale/ro/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ro/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /source/locale/ro/LC_MESSAGES/functions.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ro/LC_MESSAGES/functions.po -------------------------------------------------------------------------------- /source/locale/ro/LC_MESSAGES/functions_parameters.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ro/LC_MESSAGES/functions_parameters.po -------------------------------------------------------------------------------- /source/locale/ro/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ro/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /source/locale/ro/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ro/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /source/locale/ro/LC_MESSAGES/logical_operators.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ro/LC_MESSAGES/logical_operators.po -------------------------------------------------------------------------------- /source/locale/ro/LC_MESSAGES/loops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ro/LC_MESSAGES/loops.po -------------------------------------------------------------------------------- /source/locale/ro/LC_MESSAGES/simple_drawing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ro/LC_MESSAGES/simple_drawing.po -------------------------------------------------------------------------------- /source/locale/ro/LC_MESSAGES/variables.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ro/LC_MESSAGES/variables.po -------------------------------------------------------------------------------- /source/locale/ro/LC_MESSAGES/where_to_go.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ro/LC_MESSAGES/where_to_go.po -------------------------------------------------------------------------------- /source/locale/ru/LC_MESSAGES/conditional_loops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ru/LC_MESSAGES/conditional_loops.po -------------------------------------------------------------------------------- /source/locale/ru/LC_MESSAGES/conditionals.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ru/LC_MESSAGES/conditionals.po -------------------------------------------------------------------------------- /source/locale/ru/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ru/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /source/locale/ru/LC_MESSAGES/functions.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ru/LC_MESSAGES/functions.po -------------------------------------------------------------------------------- /source/locale/ru/LC_MESSAGES/functions_parameters.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ru/LC_MESSAGES/functions_parameters.po -------------------------------------------------------------------------------- /source/locale/ru/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ru/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /source/locale/ru/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ru/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /source/locale/ru/LC_MESSAGES/logical_operators.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ru/LC_MESSAGES/logical_operators.po -------------------------------------------------------------------------------- /source/locale/ru/LC_MESSAGES/loops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ru/LC_MESSAGES/loops.po -------------------------------------------------------------------------------- /source/locale/ru/LC_MESSAGES/simple_drawing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ru/LC_MESSAGES/simple_drawing.po -------------------------------------------------------------------------------- /source/locale/ru/LC_MESSAGES/variables.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ru/LC_MESSAGES/variables.po -------------------------------------------------------------------------------- /source/locale/ru/LC_MESSAGES/where_to_go.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/locale/ru/LC_MESSAGES/where_to_go.po -------------------------------------------------------------------------------- /source/logical_operators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/logical_operators.rst -------------------------------------------------------------------------------- /source/loops.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/loops.rst -------------------------------------------------------------------------------- /source/simple_drawing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/simple_drawing.rst -------------------------------------------------------------------------------- /source/variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/variables.rst -------------------------------------------------------------------------------- /source/where_to_go.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpdang/python-beginners/HEAD/source/where_to_go.rst --------------------------------------------------------------------------------