├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── apuntes-notes ├── keynote │ ├── 1.- Fundamentos_Python.key │ ├── 10-Estructura de datos - Colecciones- Listas.key │ ├── 11-Bucles.key │ ├── 12-Estructura de datos - Colecciones- Tuplas.key │ ├── 13-Estructura de datos - Colecciones- Sets.key │ ├── 14 -Estructura de datos - Colecciones- Diccionarios.key │ ├── 15-Manejo de excepciones.key │ ├── 16-Funciones.key │ ├── 17-Ficheros.key │ ├── 18-POO.key │ ├── 19-Programacion-funcional.key │ ├── 2.- Variables y constantes.key │ ├── 20-Módulos.key │ ├── 21-Crear nuestro primer paquete y subirlo a PyPi.key │ ├── 22.- Unit Testing.key │ ├── 3.- Tipos de datos.key │ ├── 4.- Depurando el código.key │ ├── 5.- Tipos de datos Numbers - Números.key │ ├── 6.- Operadores.key │ ├── 7.- Tipos de datos - Booleanos.key │ ├── 8.- Tipos de datos Cadenas de texto - Strings.key │ └── 9.- Estructuras de control del flujo del programa.key └── powerpoint │ ├── 1.- Fundamentos_Python.ppt │ ├── 2.- Variables y constantes.ppt │ ├── 3.- Tipos de datos.ppt │ ├── 4.- Depurando el código.ppt │ ├── 5.- Tipos de datos Numbers - Números.ppt │ ├── 6.- Operadores.ppt │ ├── 7.- Tipos de datos - Booleanos.ppt │ ├── 8.- Tipos de datos Cadenas de texto - Strings.ppt │ └── 9.- Estructuras de control del flujo del programa.ppt ├── practice-exercises ├── SOLUCION - section-10-11-list-loops.zip ├── create-files.py ├── enunciados │ ├── 10_11-Bucles_listas.pdf │ ├── 12-tuplas.pdf │ ├── 13-conjuntos-sets.pdf │ ├── 14-diccionarios-dict.pdf │ ├── 17-ficheros-file.pdf │ ├── 8 - str - Strings.pdf │ └── 9 - Condicionales.pdf ├── extra-projects-complete │ └── 1-strangle-game │ │ ├── colors.py │ │ ├── data │ │ ├── sagas-miticas.txt │ │ └── sagas-sony.txt │ │ ├── draw.py │ │ ├── game.py │ │ └── test.py ├── section-10-11-list-loops │ ├── 1.py │ ├── 10.py │ ├── 11.py │ ├── 12.py │ ├── 13.py │ ├── 14.py │ ├── 15.py │ ├── 16.py │ ├── 17.py │ ├── 18.py │ ├── 19.py │ ├── 2.py │ ├── 3.py │ ├── 4.py │ ├── 5.py │ ├── 6.py │ ├── 7.py │ ├── 8.py │ └── 9.py ├── section-12-tuples │ ├── 1.py │ ├── 10.py │ ├── 11.py │ ├── 12.py │ ├── 2.py │ ├── 3.py │ ├── 4.py │ ├── 5.py │ ├── 6.py │ ├── 7.py │ ├── 8.py │ └── 9.py ├── section-13-sets │ ├── 1.py │ ├── 10.py │ ├── 11.py │ ├── 12.py │ ├── 2.py │ ├── 3.py │ ├── 4.py │ ├── 5.py │ ├── 6.py │ ├── 7.py │ ├── 8.py │ └── 9.py ├── section-14-dicts │ ├── 1.py │ ├── 10.py │ ├── 2.py │ ├── 3.py │ ├── 4.py │ ├── 5.py │ ├── 6.py │ ├── 7.py │ ├── 8.py │ └── 9.py ├── section-17-file-io.zip ├── section-17-file-io │ ├── 1.py │ ├── 10.py │ ├── 11.py │ ├── 12.py │ ├── 13.py │ ├── 14.py │ ├── 15.py │ ├── 16.py │ ├── 2.py │ ├── 3.py │ ├── 4.py │ ├── 5.py │ ├── 6.py │ ├── 7.py │ ├── 8.py │ ├── 9.py │ ├── A.txt │ ├── B.txt │ ├── C.txt │ ├── D.txt │ ├── E.txt │ ├── F.txt │ ├── G.txt │ ├── H.txt │ ├── I.txt │ ├── J.txt │ ├── K.txt │ ├── L.txt │ ├── M.txt │ ├── N.txt │ ├── O.txt │ ├── P.txt │ ├── Q.txt │ ├── R.txt │ ├── S.txt │ ├── T.txt │ ├── U.txt │ ├── V.txt │ ├── W.txt │ ├── X.txt │ ├── Y.txt │ ├── Z.txt │ ├── employees.txt │ ├── employees_ranking_salaries.txt │ ├── exercise1.txt │ ├── exercise10-result.txt │ ├── exercise10.txt │ ├── exercise11-copy.txt │ ├── exercise11.txt │ ├── exercise2-3.txt │ ├── exercise4.txt │ ├── exercise7.txt │ ├── exercise8.txt │ ├── report-students-avg-data.txt │ └── students.txt ├── section-8-strings │ ├── 1.py │ ├── 10.py │ ├── 11.py │ ├── 12.py │ ├── 13.py │ ├── 14.py │ ├── 2.py │ ├── 3.py │ ├── 4.py │ ├── 5.py │ ├── 6.py │ ├── 7.py │ ├── 8.py │ └── 9.py └── section-9-conditionals │ ├── 1.py │ ├── 10.py │ ├── 11.py │ ├── 12.py │ ├── 13.py │ ├── 14.py │ ├── 15.py │ ├── 16.py │ ├── 17.py │ ├── 18.py │ ├── 19.py │ ├── 2.py │ ├── 20.py │ ├── 3.py │ ├── 4.py │ ├── 5.py │ ├── 6.py │ ├── 7.py │ ├── 8.py │ └── 9.py ├── section-01 ├── 1-hello-world.py ├── 2-indentation.py ├── 3-pep8-best-practices.py └── 4-comments.py ├── section-02-variables-consts ├── 1-create-variables-constants.py ├── 2-names-variables-constants.py ├── 3-show-variable-values.py ├── 4-input-variables.py ├── 5-b-global-variables.py └── 5-global-variables.py ├── section-03-type-data ├── 1-automatic-assign-type-data.py ├── 2-manual-assign-type-data.py ├── 3-conversion-implicit.py └── 4-conversion-explicit.py ├── section-04-debugger └── 1-debug.py ├── section-05-type-numbers ├── 1-int.py ├── 2-float.py ├── 3-complex.py └── 4-conversion.py ├── section-06-operators ├── 1-arithmetic │ ├── 1-addition.py │ ├── 2-subtraction.py │ ├── 3-multiplication.py │ ├── 4-division.py │ ├── 5-modulus.py │ ├── 6-exponential.py │ ├── 7-floor-division.py │ └── 8-operator-order.py ├── 2-assignment │ ├── 1.py │ └── 2.py ├── 3-relational │ ├── 1-equal-different.py │ ├── 2-greather-less-than.py │ └── 3-greather-less-tha-equal.py ├── 4-logical │ ├── 1-and.py │ ├── 2-or.py │ ├── 3-and-or.py │ └── 4-not.py ├── 5-identity │ └── 1.py └── 6-membership │ └── 1.py ├── section-07-booleans └── 1.py ├── section-08-strings ├── 1-1-assign.py ├── 1-2-select-char.py ├── 1-3-for.py ├── 1-4-len.py ├── 10-ends-with.py ├── 11-rfind.py ├── 12-rindex.py ├── 13-count.py ├── 14-escape-chars.py ├── 15-format.py ├── 16-f-string.py ├── 2-slicing.py ├── 3-modify-mayus-minus.py ├── 4-strip.py ├── 5-replace.py ├── 6-split.py ├── 7-find.py ├── 8-index.py └── 9-starts-with.py ├── section-09-conditionals ├── 1-if.py ├── 2-if-else.py ├── 3-if-elif-else.py ├── 4-nested-if.py └── 5-ternary-operator.py ├── section-10-collections-lists ├── 1-access-elements.py ├── 10-elements-reverse.py ├── 11-copy-elements.py ├── 12-join-list.py ├── 13-count-elements.py ├── 14-2-dimensions-list.py ├── 2-access-multiple.py ├── 3-in-not-in.py ├── 4-add-elements.py ├── 5-modify-elements.py ├── 6-remove-elements.py ├── 7-for-elements.py ├── 8-order-elements-default.py └── 9-order-elements-custom.py ├── section-11-loops ├── 1-while.py └── 2-for.py ├── section-12-tuples ├── 1-access-elements.py ├── 2-loops.py ├── 3-unpacking.py └── 4-join.py ├── section-13-sets ├── 1-add-elements.py ├── 2-remove-elements.py └── 3-join.py ├── section-14-dictionary ├── 1-access-elements.py ├── 2-add-modify.py ├── 3-remove-elements.py ├── 4-loops.py └── 5-copy.py ├── section-15-exceptions ├── 1-basic.py ├── 2-exceptions-classes.py ├── 3-else-finally.py └── 4-raise-exceptions.py ├── section-16-functions ├── 1-basic.py ├── 2-args-params-determinate.py ├── 3-args-params-indeterminate.py └── 4-pass-return.py ├── section-17-files ├── 1-copy.txt ├── 1-read.py ├── 1.txt ├── 2-a.txt ├── 2-write.py ├── 2.txt ├── 3-copy-files.py ├── 4-remove.py └── Ejercicios Ficheros │ ├── nominas-ficheros-consola.jpeg │ ├── nominas-ficheros-enunciado.jpeg │ └── nominas-ficheros-uml.jpeg ├── section-18-poo ├── 1-classes-objects.py ├── 2-__init__.py ├── 3-__del__.py ├── 4-__str__.py ├── 5-methods.py ├── 6-inheritance │ ├── animal.py │ ├── cat.py │ ├── dog.py │ ├── pig.py │ ├── script1.py │ ├── script2.py │ ├── script3.py │ └── script4.py └── 7-multi-inheritance │ ├── calendar.py │ ├── clock.py │ ├── digital_clock.py │ └── test.py ├── section-19-fp ├── 0-functions.py ├── 1-lambda.py ├── 2-map.py ├── 3-filter.py ├── 4-reduce.py └── 5-recursion.py ├── section-20-modules ├── califications.py ├── greet.py ├── people.py └── test.py ├── section-21-pypi ├── LICENSE.md ├── README.md ├── open_weather_api │ ├── __init__.py │ ├── api.py │ ├── config.py │ ├── constants.py │ └── options │ │ ├── __init__.py │ │ ├── city.py │ │ └── coordinates.py ├── script.py ├── setup.py ├── test_api_city.py └── test_api_coordinates.py └── section-22-unittesting ├── 00_example.py ├── 01_assertions.py ├── 02_mock_basic ├── mock_example.py └── test_example.py ├── 03_calculator ├── calculator.py └── test_calculator.py ├── 04_api_blog ├── blog.py ├── test_blog.py └── test_blog_comments.py ├── 05_skip_test.py ├── 06_skip_real.py ├── 07_test_fixture.py └── 08_vowels_count.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/README.md -------------------------------------------------------------------------------- /apuntes-notes/keynote/1.- Fundamentos_Python.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/1.- Fundamentos_Python.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/10-Estructura de datos - Colecciones- Listas.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/10-Estructura de datos - Colecciones- Listas.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/11-Bucles.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/11-Bucles.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/12-Estructura de datos - Colecciones- Tuplas.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/12-Estructura de datos - Colecciones- Tuplas.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/13-Estructura de datos - Colecciones- Sets.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/13-Estructura de datos - Colecciones- Sets.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/14 -Estructura de datos - Colecciones- Diccionarios.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/14 -Estructura de datos - Colecciones- Diccionarios.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/15-Manejo de excepciones.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/15-Manejo de excepciones.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/16-Funciones.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/16-Funciones.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/17-Ficheros.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/17-Ficheros.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/18-POO.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/18-POO.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/19-Programacion-funcional.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/19-Programacion-funcional.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/2.- Variables y constantes.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/2.- Variables y constantes.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/20-Módulos.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/20-Módulos.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/21-Crear nuestro primer paquete y subirlo a PyPi.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/21-Crear nuestro primer paquete y subirlo a PyPi.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/22.- Unit Testing.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/22.- Unit Testing.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/3.- Tipos de datos.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/3.- Tipos de datos.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/4.- Depurando el código.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/4.- Depurando el código.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/5.- Tipos de datos Numbers - Números.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/5.- Tipos de datos Numbers - Números.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/6.- Operadores.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/6.- Operadores.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/7.- Tipos de datos - Booleanos.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/7.- Tipos de datos - Booleanos.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/8.- Tipos de datos Cadenas de texto - Strings.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/8.- Tipos de datos Cadenas de texto - Strings.key -------------------------------------------------------------------------------- /apuntes-notes/keynote/9.- Estructuras de control del flujo del programa.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/keynote/9.- Estructuras de control del flujo del programa.key -------------------------------------------------------------------------------- /apuntes-notes/powerpoint/1.- Fundamentos_Python.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/powerpoint/1.- Fundamentos_Python.ppt -------------------------------------------------------------------------------- /apuntes-notes/powerpoint/2.- Variables y constantes.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/powerpoint/2.- Variables y constantes.ppt -------------------------------------------------------------------------------- /apuntes-notes/powerpoint/3.- Tipos de datos.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/powerpoint/3.- Tipos de datos.ppt -------------------------------------------------------------------------------- /apuntes-notes/powerpoint/4.- Depurando el código.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/powerpoint/4.- Depurando el código.ppt -------------------------------------------------------------------------------- /apuntes-notes/powerpoint/5.- Tipos de datos Numbers - Números.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/powerpoint/5.- Tipos de datos Numbers - Números.ppt -------------------------------------------------------------------------------- /apuntes-notes/powerpoint/6.- Operadores.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/powerpoint/6.- Operadores.ppt -------------------------------------------------------------------------------- /apuntes-notes/powerpoint/7.- Tipos de datos - Booleanos.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/powerpoint/7.- Tipos de datos - Booleanos.ppt -------------------------------------------------------------------------------- /apuntes-notes/powerpoint/8.- Tipos de datos Cadenas de texto - Strings.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/powerpoint/8.- Tipos de datos Cadenas de texto - Strings.ppt -------------------------------------------------------------------------------- /apuntes-notes/powerpoint/9.- Estructuras de control del flujo del programa.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/apuntes-notes/powerpoint/9.- Estructuras de control del flujo del programa.ppt -------------------------------------------------------------------------------- /practice-exercises/SOLUCION - section-10-11-list-loops.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/SOLUCION - section-10-11-list-loops.zip -------------------------------------------------------------------------------- /practice-exercises/create-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/create-files.py -------------------------------------------------------------------------------- /practice-exercises/enunciados/10_11-Bucles_listas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/enunciados/10_11-Bucles_listas.pdf -------------------------------------------------------------------------------- /practice-exercises/enunciados/12-tuplas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/enunciados/12-tuplas.pdf -------------------------------------------------------------------------------- /practice-exercises/enunciados/13-conjuntos-sets.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/enunciados/13-conjuntos-sets.pdf -------------------------------------------------------------------------------- /practice-exercises/enunciados/14-diccionarios-dict.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/enunciados/14-diccionarios-dict.pdf -------------------------------------------------------------------------------- /practice-exercises/enunciados/17-ficheros-file.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/enunciados/17-ficheros-file.pdf -------------------------------------------------------------------------------- /practice-exercises/enunciados/8 - str - Strings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/enunciados/8 - str - Strings.pdf -------------------------------------------------------------------------------- /practice-exercises/enunciados/9 - Condicionales.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/enunciados/9 - Condicionales.pdf -------------------------------------------------------------------------------- /practice-exercises/extra-projects-complete/1-strangle-game/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/extra-projects-complete/1-strangle-game/colors.py -------------------------------------------------------------------------------- /practice-exercises/extra-projects-complete/1-strangle-game/data/sagas-miticas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/extra-projects-complete/1-strangle-game/data/sagas-miticas.txt -------------------------------------------------------------------------------- /practice-exercises/extra-projects-complete/1-strangle-game/data/sagas-sony.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/extra-projects-complete/1-strangle-game/data/sagas-sony.txt -------------------------------------------------------------------------------- /practice-exercises/extra-projects-complete/1-strangle-game/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/extra-projects-complete/1-strangle-game/draw.py -------------------------------------------------------------------------------- /practice-exercises/extra-projects-complete/1-strangle-game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/extra-projects-complete/1-strangle-game/game.py -------------------------------------------------------------------------------- /practice-exercises/extra-projects-complete/1-strangle-game/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/extra-projects-complete/1-strangle-game/test.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/1.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/10.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/11.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/12.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/13.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/14.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/15.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/16.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/17.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/18.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/19.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/2.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/3.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/4.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/5.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/6.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/7.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/8.py -------------------------------------------------------------------------------- /practice-exercises/section-10-11-list-loops/9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-10-11-list-loops/9.py -------------------------------------------------------------------------------- /practice-exercises/section-12-tuples/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-12-tuples/1.py -------------------------------------------------------------------------------- /practice-exercises/section-12-tuples/10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-12-tuples/10.py -------------------------------------------------------------------------------- /practice-exercises/section-12-tuples/11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-12-tuples/11.py -------------------------------------------------------------------------------- /practice-exercises/section-12-tuples/12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-12-tuples/12.py -------------------------------------------------------------------------------- /practice-exercises/section-12-tuples/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-12-tuples/2.py -------------------------------------------------------------------------------- /practice-exercises/section-12-tuples/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-12-tuples/3.py -------------------------------------------------------------------------------- /practice-exercises/section-12-tuples/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-12-tuples/4.py -------------------------------------------------------------------------------- /practice-exercises/section-12-tuples/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-12-tuples/5.py -------------------------------------------------------------------------------- /practice-exercises/section-12-tuples/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-12-tuples/6.py -------------------------------------------------------------------------------- /practice-exercises/section-12-tuples/7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-12-tuples/7.py -------------------------------------------------------------------------------- /practice-exercises/section-12-tuples/8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-12-tuples/8.py -------------------------------------------------------------------------------- /practice-exercises/section-12-tuples/9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-12-tuples/9.py -------------------------------------------------------------------------------- /practice-exercises/section-13-sets/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-13-sets/1.py -------------------------------------------------------------------------------- /practice-exercises/section-13-sets/10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-13-sets/10.py -------------------------------------------------------------------------------- /practice-exercises/section-13-sets/11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-13-sets/11.py -------------------------------------------------------------------------------- /practice-exercises/section-13-sets/12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-13-sets/12.py -------------------------------------------------------------------------------- /practice-exercises/section-13-sets/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-13-sets/2.py -------------------------------------------------------------------------------- /practice-exercises/section-13-sets/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-13-sets/3.py -------------------------------------------------------------------------------- /practice-exercises/section-13-sets/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-13-sets/4.py -------------------------------------------------------------------------------- /practice-exercises/section-13-sets/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-13-sets/5.py -------------------------------------------------------------------------------- /practice-exercises/section-13-sets/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-13-sets/6.py -------------------------------------------------------------------------------- /practice-exercises/section-13-sets/7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-13-sets/7.py -------------------------------------------------------------------------------- /practice-exercises/section-13-sets/8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-13-sets/8.py -------------------------------------------------------------------------------- /practice-exercises/section-13-sets/9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-13-sets/9.py -------------------------------------------------------------------------------- /practice-exercises/section-14-dicts/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-14-dicts/1.py -------------------------------------------------------------------------------- /practice-exercises/section-14-dicts/10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-14-dicts/10.py -------------------------------------------------------------------------------- /practice-exercises/section-14-dicts/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-14-dicts/2.py -------------------------------------------------------------------------------- /practice-exercises/section-14-dicts/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-14-dicts/3.py -------------------------------------------------------------------------------- /practice-exercises/section-14-dicts/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-14-dicts/4.py -------------------------------------------------------------------------------- /practice-exercises/section-14-dicts/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-14-dicts/5.py -------------------------------------------------------------------------------- /practice-exercises/section-14-dicts/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-14-dicts/6.py -------------------------------------------------------------------------------- /practice-exercises/section-14-dicts/7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-14-dicts/7.py -------------------------------------------------------------------------------- /practice-exercises/section-14-dicts/8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-14-dicts/8.py -------------------------------------------------------------------------------- /practice-exercises/section-14-dicts/9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-14-dicts/9.py -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io.zip -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/1.py -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/10.py -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/11.py -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/12.py -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/13.py -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/14.py -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/15.py -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/16.py -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/2.py -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/3.py -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/4.py -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/5.py -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/6.py -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/7.py -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/8.py -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/9.py -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/A.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/B.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/C.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/D.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/E.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/F.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/G.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/H.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/I.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/J.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/K.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/L.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/M.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/N.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/O.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/P.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/Q.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/S.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/T.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/U.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/V.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/W.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/X.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/Y.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/Z.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/employees.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/employees.txt -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/employees_ranking_salaries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/employees_ranking_salaries.txt -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/exercise1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/exercise1.txt -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/exercise10-result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/exercise10-result.txt -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/exercise10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/exercise10.txt -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/exercise11-copy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/exercise11-copy.txt -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/exercise11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/exercise11.txt -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/exercise2-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/exercise2-3.txt -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/exercise4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/exercise4.txt -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/exercise7.txt: -------------------------------------------------------------------------------- 1 | Anartz baloncesto python 2 | programación documento 3 | libro -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/exercise8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/exercise8.txt -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/report-students-avg-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/report-students-avg-data.txt -------------------------------------------------------------------------------- /practice-exercises/section-17-file-io/students.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-17-file-io/students.txt -------------------------------------------------------------------------------- /practice-exercises/section-8-strings/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-8-strings/1.py -------------------------------------------------------------------------------- /practice-exercises/section-8-strings/10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-8-strings/10.py -------------------------------------------------------------------------------- /practice-exercises/section-8-strings/11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-8-strings/11.py -------------------------------------------------------------------------------- /practice-exercises/section-8-strings/12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-8-strings/12.py -------------------------------------------------------------------------------- /practice-exercises/section-8-strings/13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-8-strings/13.py -------------------------------------------------------------------------------- /practice-exercises/section-8-strings/14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-8-strings/14.py -------------------------------------------------------------------------------- /practice-exercises/section-8-strings/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-8-strings/2.py -------------------------------------------------------------------------------- /practice-exercises/section-8-strings/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-8-strings/3.py -------------------------------------------------------------------------------- /practice-exercises/section-8-strings/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-8-strings/4.py -------------------------------------------------------------------------------- /practice-exercises/section-8-strings/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-8-strings/5.py -------------------------------------------------------------------------------- /practice-exercises/section-8-strings/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-8-strings/6.py -------------------------------------------------------------------------------- /practice-exercises/section-8-strings/7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-8-strings/7.py -------------------------------------------------------------------------------- /practice-exercises/section-8-strings/8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-8-strings/8.py -------------------------------------------------------------------------------- /practice-exercises/section-8-strings/9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-8-strings/9.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/1.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/10.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/11.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/12.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/13.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/14.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/15.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/16.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/17.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/18.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/19.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/2.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/20.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/3.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/4.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/5.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/6.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/7.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/8.py -------------------------------------------------------------------------------- /practice-exercises/section-9-conditionals/9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/practice-exercises/section-9-conditionals/9.py -------------------------------------------------------------------------------- /section-01/1-hello-world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-01/1-hello-world.py -------------------------------------------------------------------------------- /section-01/2-indentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-01/2-indentation.py -------------------------------------------------------------------------------- /section-01/3-pep8-best-practices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-01/3-pep8-best-practices.py -------------------------------------------------------------------------------- /section-01/4-comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-01/4-comments.py -------------------------------------------------------------------------------- /section-02-variables-consts/1-create-variables-constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-02-variables-consts/1-create-variables-constants.py -------------------------------------------------------------------------------- /section-02-variables-consts/2-names-variables-constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-02-variables-consts/2-names-variables-constants.py -------------------------------------------------------------------------------- /section-02-variables-consts/3-show-variable-values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-02-variables-consts/3-show-variable-values.py -------------------------------------------------------------------------------- /section-02-variables-consts/4-input-variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-02-variables-consts/4-input-variables.py -------------------------------------------------------------------------------- /section-02-variables-consts/5-b-global-variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-02-variables-consts/5-b-global-variables.py -------------------------------------------------------------------------------- /section-02-variables-consts/5-global-variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-02-variables-consts/5-global-variables.py -------------------------------------------------------------------------------- /section-03-type-data/1-automatic-assign-type-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-03-type-data/1-automatic-assign-type-data.py -------------------------------------------------------------------------------- /section-03-type-data/2-manual-assign-type-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-03-type-data/2-manual-assign-type-data.py -------------------------------------------------------------------------------- /section-03-type-data/3-conversion-implicit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-03-type-data/3-conversion-implicit.py -------------------------------------------------------------------------------- /section-03-type-data/4-conversion-explicit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-03-type-data/4-conversion-explicit.py -------------------------------------------------------------------------------- /section-04-debugger/1-debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-04-debugger/1-debug.py -------------------------------------------------------------------------------- /section-05-type-numbers/1-int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-05-type-numbers/1-int.py -------------------------------------------------------------------------------- /section-05-type-numbers/2-float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-05-type-numbers/2-float.py -------------------------------------------------------------------------------- /section-05-type-numbers/3-complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-05-type-numbers/3-complex.py -------------------------------------------------------------------------------- /section-05-type-numbers/4-conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-05-type-numbers/4-conversion.py -------------------------------------------------------------------------------- /section-06-operators/1-arithmetic/1-addition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/1-arithmetic/1-addition.py -------------------------------------------------------------------------------- /section-06-operators/1-arithmetic/2-subtraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/1-arithmetic/2-subtraction.py -------------------------------------------------------------------------------- /section-06-operators/1-arithmetic/3-multiplication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/1-arithmetic/3-multiplication.py -------------------------------------------------------------------------------- /section-06-operators/1-arithmetic/4-division.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/1-arithmetic/4-division.py -------------------------------------------------------------------------------- /section-06-operators/1-arithmetic/5-modulus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/1-arithmetic/5-modulus.py -------------------------------------------------------------------------------- /section-06-operators/1-arithmetic/6-exponential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/1-arithmetic/6-exponential.py -------------------------------------------------------------------------------- /section-06-operators/1-arithmetic/7-floor-division.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/1-arithmetic/7-floor-division.py -------------------------------------------------------------------------------- /section-06-operators/1-arithmetic/8-operator-order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/1-arithmetic/8-operator-order.py -------------------------------------------------------------------------------- /section-06-operators/2-assignment/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/2-assignment/1.py -------------------------------------------------------------------------------- /section-06-operators/2-assignment/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/2-assignment/2.py -------------------------------------------------------------------------------- /section-06-operators/3-relational/1-equal-different.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/3-relational/1-equal-different.py -------------------------------------------------------------------------------- /section-06-operators/3-relational/2-greather-less-than.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/3-relational/2-greather-less-than.py -------------------------------------------------------------------------------- /section-06-operators/3-relational/3-greather-less-tha-equal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/3-relational/3-greather-less-tha-equal.py -------------------------------------------------------------------------------- /section-06-operators/4-logical/1-and.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/4-logical/1-and.py -------------------------------------------------------------------------------- /section-06-operators/4-logical/2-or.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/4-logical/2-or.py -------------------------------------------------------------------------------- /section-06-operators/4-logical/3-and-or.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/4-logical/3-and-or.py -------------------------------------------------------------------------------- /section-06-operators/4-logical/4-not.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/4-logical/4-not.py -------------------------------------------------------------------------------- /section-06-operators/5-identity/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/5-identity/1.py -------------------------------------------------------------------------------- /section-06-operators/6-membership/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-06-operators/6-membership/1.py -------------------------------------------------------------------------------- /section-07-booleans/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-07-booleans/1.py -------------------------------------------------------------------------------- /section-08-strings/1-1-assign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/1-1-assign.py -------------------------------------------------------------------------------- /section-08-strings/1-2-select-char.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/1-2-select-char.py -------------------------------------------------------------------------------- /section-08-strings/1-3-for.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/1-3-for.py -------------------------------------------------------------------------------- /section-08-strings/1-4-len.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/1-4-len.py -------------------------------------------------------------------------------- /section-08-strings/10-ends-with.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/10-ends-with.py -------------------------------------------------------------------------------- /section-08-strings/11-rfind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/11-rfind.py -------------------------------------------------------------------------------- /section-08-strings/12-rindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/12-rindex.py -------------------------------------------------------------------------------- /section-08-strings/13-count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/13-count.py -------------------------------------------------------------------------------- /section-08-strings/14-escape-chars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/14-escape-chars.py -------------------------------------------------------------------------------- /section-08-strings/15-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/15-format.py -------------------------------------------------------------------------------- /section-08-strings/16-f-string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/16-f-string.py -------------------------------------------------------------------------------- /section-08-strings/2-slicing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/2-slicing.py -------------------------------------------------------------------------------- /section-08-strings/3-modify-mayus-minus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/3-modify-mayus-minus.py -------------------------------------------------------------------------------- /section-08-strings/4-strip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/4-strip.py -------------------------------------------------------------------------------- /section-08-strings/5-replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/5-replace.py -------------------------------------------------------------------------------- /section-08-strings/6-split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/6-split.py -------------------------------------------------------------------------------- /section-08-strings/7-find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/7-find.py -------------------------------------------------------------------------------- /section-08-strings/8-index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/8-index.py -------------------------------------------------------------------------------- /section-08-strings/9-starts-with.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-08-strings/9-starts-with.py -------------------------------------------------------------------------------- /section-09-conditionals/1-if.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-09-conditionals/1-if.py -------------------------------------------------------------------------------- /section-09-conditionals/2-if-else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-09-conditionals/2-if-else.py -------------------------------------------------------------------------------- /section-09-conditionals/3-if-elif-else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-09-conditionals/3-if-elif-else.py -------------------------------------------------------------------------------- /section-09-conditionals/4-nested-if.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-09-conditionals/4-nested-if.py -------------------------------------------------------------------------------- /section-09-conditionals/5-ternary-operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-09-conditionals/5-ternary-operator.py -------------------------------------------------------------------------------- /section-10-collections-lists/1-access-elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-10-collections-lists/1-access-elements.py -------------------------------------------------------------------------------- /section-10-collections-lists/10-elements-reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-10-collections-lists/10-elements-reverse.py -------------------------------------------------------------------------------- /section-10-collections-lists/11-copy-elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-10-collections-lists/11-copy-elements.py -------------------------------------------------------------------------------- /section-10-collections-lists/12-join-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-10-collections-lists/12-join-list.py -------------------------------------------------------------------------------- /section-10-collections-lists/13-count-elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-10-collections-lists/13-count-elements.py -------------------------------------------------------------------------------- /section-10-collections-lists/14-2-dimensions-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-10-collections-lists/14-2-dimensions-list.py -------------------------------------------------------------------------------- /section-10-collections-lists/2-access-multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-10-collections-lists/2-access-multiple.py -------------------------------------------------------------------------------- /section-10-collections-lists/3-in-not-in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-10-collections-lists/3-in-not-in.py -------------------------------------------------------------------------------- /section-10-collections-lists/4-add-elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-10-collections-lists/4-add-elements.py -------------------------------------------------------------------------------- /section-10-collections-lists/5-modify-elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-10-collections-lists/5-modify-elements.py -------------------------------------------------------------------------------- /section-10-collections-lists/6-remove-elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-10-collections-lists/6-remove-elements.py -------------------------------------------------------------------------------- /section-10-collections-lists/7-for-elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-10-collections-lists/7-for-elements.py -------------------------------------------------------------------------------- /section-10-collections-lists/8-order-elements-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-10-collections-lists/8-order-elements-default.py -------------------------------------------------------------------------------- /section-10-collections-lists/9-order-elements-custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-10-collections-lists/9-order-elements-custom.py -------------------------------------------------------------------------------- /section-11-loops/1-while.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-11-loops/1-while.py -------------------------------------------------------------------------------- /section-11-loops/2-for.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-11-loops/2-for.py -------------------------------------------------------------------------------- /section-12-tuples/1-access-elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-12-tuples/1-access-elements.py -------------------------------------------------------------------------------- /section-12-tuples/2-loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-12-tuples/2-loops.py -------------------------------------------------------------------------------- /section-12-tuples/3-unpacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-12-tuples/3-unpacking.py -------------------------------------------------------------------------------- /section-12-tuples/4-join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-12-tuples/4-join.py -------------------------------------------------------------------------------- /section-13-sets/1-add-elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-13-sets/1-add-elements.py -------------------------------------------------------------------------------- /section-13-sets/2-remove-elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-13-sets/2-remove-elements.py -------------------------------------------------------------------------------- /section-13-sets/3-join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-13-sets/3-join.py -------------------------------------------------------------------------------- /section-14-dictionary/1-access-elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-14-dictionary/1-access-elements.py -------------------------------------------------------------------------------- /section-14-dictionary/2-add-modify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-14-dictionary/2-add-modify.py -------------------------------------------------------------------------------- /section-14-dictionary/3-remove-elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-14-dictionary/3-remove-elements.py -------------------------------------------------------------------------------- /section-14-dictionary/4-loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-14-dictionary/4-loops.py -------------------------------------------------------------------------------- /section-14-dictionary/5-copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-14-dictionary/5-copy.py -------------------------------------------------------------------------------- /section-15-exceptions/1-basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-15-exceptions/1-basic.py -------------------------------------------------------------------------------- /section-15-exceptions/2-exceptions-classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-15-exceptions/2-exceptions-classes.py -------------------------------------------------------------------------------- /section-15-exceptions/3-else-finally.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-15-exceptions/3-else-finally.py -------------------------------------------------------------------------------- /section-15-exceptions/4-raise-exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-15-exceptions/4-raise-exceptions.py -------------------------------------------------------------------------------- /section-16-functions/1-basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-16-functions/1-basic.py -------------------------------------------------------------------------------- /section-16-functions/2-args-params-determinate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-16-functions/2-args-params-determinate.py -------------------------------------------------------------------------------- /section-16-functions/3-args-params-indeterminate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-16-functions/3-args-params-indeterminate.py -------------------------------------------------------------------------------- /section-16-functions/4-pass-return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-16-functions/4-pass-return.py -------------------------------------------------------------------------------- /section-17-files/1-copy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-17-files/1-copy.txt -------------------------------------------------------------------------------- /section-17-files/1-read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-17-files/1-read.py -------------------------------------------------------------------------------- /section-17-files/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-17-files/1.txt -------------------------------------------------------------------------------- /section-17-files/2-a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /section-17-files/2-write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-17-files/2-write.py -------------------------------------------------------------------------------- /section-17-files/2.txt: -------------------------------------------------------------------------------- 1 | Anartz 2 | Mikel 3 | Gorka 4 | -------------------------------------------------------------------------------- /section-17-files/3-copy-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-17-files/3-copy-files.py -------------------------------------------------------------------------------- /section-17-files/4-remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-17-files/4-remove.py -------------------------------------------------------------------------------- /section-17-files/Ejercicios Ficheros/nominas-ficheros-consola.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-17-files/Ejercicios Ficheros/nominas-ficheros-consola.jpeg -------------------------------------------------------------------------------- /section-17-files/Ejercicios Ficheros/nominas-ficheros-enunciado.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-17-files/Ejercicios Ficheros/nominas-ficheros-enunciado.jpeg -------------------------------------------------------------------------------- /section-17-files/Ejercicios Ficheros/nominas-ficheros-uml.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-17-files/Ejercicios Ficheros/nominas-ficheros-uml.jpeg -------------------------------------------------------------------------------- /section-18-poo/1-classes-objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-18-poo/1-classes-objects.py -------------------------------------------------------------------------------- /section-18-poo/2-__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-18-poo/2-__init__.py -------------------------------------------------------------------------------- /section-18-poo/3-__del__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-18-poo/3-__del__.py -------------------------------------------------------------------------------- /section-18-poo/4-__str__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-18-poo/4-__str__.py -------------------------------------------------------------------------------- /section-18-poo/5-methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-18-poo/5-methods.py -------------------------------------------------------------------------------- /section-18-poo/6-inheritance/animal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-18-poo/6-inheritance/animal.py -------------------------------------------------------------------------------- /section-18-poo/6-inheritance/cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-18-poo/6-inheritance/cat.py -------------------------------------------------------------------------------- /section-18-poo/6-inheritance/dog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-18-poo/6-inheritance/dog.py -------------------------------------------------------------------------------- /section-18-poo/6-inheritance/pig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-18-poo/6-inheritance/pig.py -------------------------------------------------------------------------------- /section-18-poo/6-inheritance/script1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-18-poo/6-inheritance/script1.py -------------------------------------------------------------------------------- /section-18-poo/6-inheritance/script2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-18-poo/6-inheritance/script2.py -------------------------------------------------------------------------------- /section-18-poo/6-inheritance/script3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-18-poo/6-inheritance/script3.py -------------------------------------------------------------------------------- /section-18-poo/6-inheritance/script4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-18-poo/6-inheritance/script4.py -------------------------------------------------------------------------------- /section-18-poo/7-multi-inheritance/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-18-poo/7-multi-inheritance/calendar.py -------------------------------------------------------------------------------- /section-18-poo/7-multi-inheritance/clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-18-poo/7-multi-inheritance/clock.py -------------------------------------------------------------------------------- /section-18-poo/7-multi-inheritance/digital_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-18-poo/7-multi-inheritance/digital_clock.py -------------------------------------------------------------------------------- /section-18-poo/7-multi-inheritance/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-18-poo/7-multi-inheritance/test.py -------------------------------------------------------------------------------- /section-19-fp/0-functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-19-fp/0-functions.py -------------------------------------------------------------------------------- /section-19-fp/1-lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-19-fp/1-lambda.py -------------------------------------------------------------------------------- /section-19-fp/2-map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-19-fp/2-map.py -------------------------------------------------------------------------------- /section-19-fp/3-filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-19-fp/3-filter.py -------------------------------------------------------------------------------- /section-19-fp/4-reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-19-fp/4-reduce.py -------------------------------------------------------------------------------- /section-19-fp/5-recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-19-fp/5-recursion.py -------------------------------------------------------------------------------- /section-20-modules/califications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-20-modules/califications.py -------------------------------------------------------------------------------- /section-20-modules/greet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-20-modules/greet.py -------------------------------------------------------------------------------- /section-20-modules/people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-20-modules/people.py -------------------------------------------------------------------------------- /section-20-modules/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-20-modules/test.py -------------------------------------------------------------------------------- /section-21-pypi/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-21-pypi/LICENSE.md -------------------------------------------------------------------------------- /section-21-pypi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-21-pypi/README.md -------------------------------------------------------------------------------- /section-21-pypi/open_weather_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /section-21-pypi/open_weather_api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-21-pypi/open_weather_api/api.py -------------------------------------------------------------------------------- /section-21-pypi/open_weather_api/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-21-pypi/open_weather_api/config.py -------------------------------------------------------------------------------- /section-21-pypi/open_weather_api/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-21-pypi/open_weather_api/constants.py -------------------------------------------------------------------------------- /section-21-pypi/open_weather_api/options/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /section-21-pypi/open_weather_api/options/city.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-21-pypi/open_weather_api/options/city.py -------------------------------------------------------------------------------- /section-21-pypi/open_weather_api/options/coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-21-pypi/open_weather_api/options/coordinates.py -------------------------------------------------------------------------------- /section-21-pypi/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-21-pypi/script.py -------------------------------------------------------------------------------- /section-21-pypi/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-21-pypi/setup.py -------------------------------------------------------------------------------- /section-21-pypi/test_api_city.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-21-pypi/test_api_city.py -------------------------------------------------------------------------------- /section-21-pypi/test_api_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-21-pypi/test_api_coordinates.py -------------------------------------------------------------------------------- /section-22-unittesting/00_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-22-unittesting/00_example.py -------------------------------------------------------------------------------- /section-22-unittesting/01_assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-22-unittesting/01_assertions.py -------------------------------------------------------------------------------- /section-22-unittesting/02_mock_basic/mock_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-22-unittesting/02_mock_basic/mock_example.py -------------------------------------------------------------------------------- /section-22-unittesting/02_mock_basic/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-22-unittesting/02_mock_basic/test_example.py -------------------------------------------------------------------------------- /section-22-unittesting/03_calculator/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-22-unittesting/03_calculator/calculator.py -------------------------------------------------------------------------------- /section-22-unittesting/03_calculator/test_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-22-unittesting/03_calculator/test_calculator.py -------------------------------------------------------------------------------- /section-22-unittesting/04_api_blog/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-22-unittesting/04_api_blog/blog.py -------------------------------------------------------------------------------- /section-22-unittesting/04_api_blog/test_blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-22-unittesting/04_api_blog/test_blog.py -------------------------------------------------------------------------------- /section-22-unittesting/04_api_blog/test_blog_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-22-unittesting/04_api_blog/test_blog_comments.py -------------------------------------------------------------------------------- /section-22-unittesting/05_skip_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-22-unittesting/05_skip_test.py -------------------------------------------------------------------------------- /section-22-unittesting/06_skip_real.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-22-unittesting/06_skip_real.py -------------------------------------------------------------------------------- /section-22-unittesting/07_test_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-22-unittesting/07_test_fixture.py -------------------------------------------------------------------------------- /section-22-unittesting/08_vowels_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugan86/bootcamp-basic-to-expert-from-scratch/HEAD/section-22-unittesting/08_vowels_count.py --------------------------------------------------------------------------------