├── 2024 ├── s_007 │ └── animales.py ├── s_01 │ ├── __pycache__ │ │ ├── datosAnimales.cpython-311.pyc │ │ └── funciones.cpython-311.pyc │ ├── datosAnimales.py │ ├── datos_animales.csv │ ├── datos_gatos.csv │ ├── ej_clase_animales.py │ └── funciones.py ├── s_02 │ ├── archivo.txt │ ├── datos_guardados.csv │ ├── datos_mascotas.csv │ ├── datos_mascotas.py │ ├── funciones.py │ ├── lala.py │ ├── main.py │ ├── menu_mascotas.py │ └── pokemon │ │ ├── datos_lechuga.txt │ │ ├── datos_pepito.txt │ │ ├── funcionesPokemon.py │ │ ├── lala.py │ │ └── main.py ├── s_03 │ ├── __pycache__ │ │ ├── datos_animales.cpython-311.pyc │ │ └── funciones.cpython-311.pyc │ ├── datos_animales.csv │ ├── datos_animales.py │ ├── datos_gatos.csv │ ├── funciones.py │ ├── main.py │ ├── test.py │ └── texto.txt └── s_04 │ └── tienda_mascotas.py ├── .gitignore ├── 1_if ├── 1_1_if.py ├── 1_2_if_else.py └── ej_ejemplo.py ├── 3_array ├── 3_1_arreglos.py ├── 3_5_multiDimension_array │ ├── ejMenu_medioRes.py │ └── ej_01.py ├── bubble.rb ├── dividir_numero.py ├── ej_01.py ├── ej_02.py ├── ej_03.py ├── ej_03_resuelto.py ├── ej_06_resuelto.py ├── ej_09.py ├── ej_10_tipo_prueba.py ├── ej_3.py ├── ej_4.py ├── ej_5.py ├── ej_5_resuelto.py ├── ej_8.py ├── ej_filtrar_lista.py ├── ej_frutas.py ├── ej_inventario.py ├── ej_lista.py ├── ej_orden.py ├── ej_sepPalabra.py ├── ej_vacasLocas.py ├── ej_vacas_casiT.py ├── ej_verduras.py ├── lala.py ├── listas_bi.py ├── separador_roto.py └── vacas_terminadas.py ├── 4_diccionarios ├── 4_2_ej.py ├── 4_3_ej.py ├── animales.py ├── diccionarios.py ├── ej_agregar_cosas.py ├── ej_listaDict.py ├── ej_tarea.txt └── mascotas.py ├── 5_funciones_import ├── 5_1_intro-a-funciones.py ├── 5_2_escribir_func.py ├── 5_3_ej_func.py ├── 5_ej_cilindros.py ├── __pycache__ │ └── listas.cpython-311.pyc ├── ej_texto.py ├── ejemplo_func_limonSoda.py ├── ejemplo_listas.py ├── ejercicio_multiplos.py └── listas.py ├── 6_archivos ├── 6_1_archivos.py └── 6_1_ej_archivos.py ├── ComandosGIT.txt ├── Hola Mundo.txt ├── __pycache__ └── michiHerramientas.cpython-311.pyc ├── ej_01.py ├── ej_avanzados ├── __pycache__ │ └── michiHerramientas.cpython-311.pyc ├── carritoCompras_1.py ├── carritoCompras_1_resuelto.py ├── carrito_compras_Menu.py ├── ej_helados.py ├── ejercicioHelados.py ├── ejercicioTelefono.py ├── ejercicioTelefono_resuelto.py ├── michiHerramientas.py ├── sistemaLogin.py ├── sistemaLogin_resuelto.py ├── sistemaLogin_v2.py └── telefonos_terminado.py ├── extra └── ejemplo_class.py ├── lista_nombres.txt ├── lista_nombres2.txt ├── productos.csv ├── productos2.csv ├── productos3.csv ├── sabores_helado.txt ├── telefonos.csv └── users.csv /.gitignore: -------------------------------------------------------------------------------- 1 | #**/__pycache__/ -------------------------------------------------------------------------------- /1_if/1_1_if.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/1_if/1_1_if.py -------------------------------------------------------------------------------- /1_if/1_2_if_else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/1_if/1_2_if_else.py -------------------------------------------------------------------------------- /1_if/ej_ejemplo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/1_if/ej_ejemplo.py -------------------------------------------------------------------------------- /2024/s_007/animales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_007/animales.py -------------------------------------------------------------------------------- /2024/s_01/__pycache__/datosAnimales.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_01/__pycache__/datosAnimales.cpython-311.pyc -------------------------------------------------------------------------------- /2024/s_01/__pycache__/funciones.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_01/__pycache__/funciones.cpython-311.pyc -------------------------------------------------------------------------------- /2024/s_01/datosAnimales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_01/datosAnimales.py -------------------------------------------------------------------------------- /2024/s_01/datos_animales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_01/datos_animales.csv -------------------------------------------------------------------------------- /2024/s_01/datos_gatos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_01/datos_gatos.csv -------------------------------------------------------------------------------- /2024/s_01/ej_clase_animales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_01/ej_clase_animales.py -------------------------------------------------------------------------------- /2024/s_01/funciones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_01/funciones.py -------------------------------------------------------------------------------- /2024/s_02/archivo.txt: -------------------------------------------------------------------------------- 1 | hola 2 | que tal 3 | lalacompleto -------------------------------------------------------------------------------- /2024/s_02/datos_guardados.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_02/datos_guardados.csv -------------------------------------------------------------------------------- /2024/s_02/datos_mascotas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_02/datos_mascotas.csv -------------------------------------------------------------------------------- /2024/s_02/datos_mascotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_02/datos_mascotas.py -------------------------------------------------------------------------------- /2024/s_02/funciones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_02/funciones.py -------------------------------------------------------------------------------- /2024/s_02/lala.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_02/lala.py -------------------------------------------------------------------------------- /2024/s_02/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_02/main.py -------------------------------------------------------------------------------- /2024/s_02/menu_mascotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_02/menu_mascotas.py -------------------------------------------------------------------------------- /2024/s_02/pokemon/datos_lechuga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_02/pokemon/datos_lechuga.txt -------------------------------------------------------------------------------- /2024/s_02/pokemon/datos_pepito.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_02/pokemon/datos_pepito.txt -------------------------------------------------------------------------------- /2024/s_02/pokemon/funcionesPokemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_02/pokemon/funcionesPokemon.py -------------------------------------------------------------------------------- /2024/s_02/pokemon/lala.py: -------------------------------------------------------------------------------- 1 | pass 2 | -------------------------------------------------------------------------------- /2024/s_02/pokemon/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_02/pokemon/main.py -------------------------------------------------------------------------------- /2024/s_03/__pycache__/datos_animales.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_03/__pycache__/datos_animales.cpython-311.pyc -------------------------------------------------------------------------------- /2024/s_03/__pycache__/funciones.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_03/__pycache__/funciones.cpython-311.pyc -------------------------------------------------------------------------------- /2024/s_03/datos_animales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_03/datos_animales.csv -------------------------------------------------------------------------------- /2024/s_03/datos_animales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_03/datos_animales.py -------------------------------------------------------------------------------- /2024/s_03/datos_gatos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_03/datos_gatos.csv -------------------------------------------------------------------------------- /2024/s_03/funciones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_03/funciones.py -------------------------------------------------------------------------------- /2024/s_03/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_03/main.py -------------------------------------------------------------------------------- /2024/s_03/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_03/test.py -------------------------------------------------------------------------------- /2024/s_03/texto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_03/texto.txt -------------------------------------------------------------------------------- /2024/s_04/tienda_mascotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/2024/s_04/tienda_mascotas.py -------------------------------------------------------------------------------- /3_array/3_1_arreglos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/3_1_arreglos.py -------------------------------------------------------------------------------- /3_array/3_5_multiDimension_array/ejMenu_medioRes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/3_5_multiDimension_array/ejMenu_medioRes.py -------------------------------------------------------------------------------- /3_array/3_5_multiDimension_array/ej_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/3_5_multiDimension_array/ej_01.py -------------------------------------------------------------------------------- /3_array/bubble.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/bubble.rb -------------------------------------------------------------------------------- /3_array/dividir_numero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/dividir_numero.py -------------------------------------------------------------------------------- /3_array/ej_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_01.py -------------------------------------------------------------------------------- /3_array/ej_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_02.py -------------------------------------------------------------------------------- /3_array/ej_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_03.py -------------------------------------------------------------------------------- /3_array/ej_03_resuelto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_03_resuelto.py -------------------------------------------------------------------------------- /3_array/ej_06_resuelto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_06_resuelto.py -------------------------------------------------------------------------------- /3_array/ej_09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_09.py -------------------------------------------------------------------------------- /3_array/ej_10_tipo_prueba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_10_tipo_prueba.py -------------------------------------------------------------------------------- /3_array/ej_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_3.py -------------------------------------------------------------------------------- /3_array/ej_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_4.py -------------------------------------------------------------------------------- /3_array/ej_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_5.py -------------------------------------------------------------------------------- /3_array/ej_5_resuelto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_5_resuelto.py -------------------------------------------------------------------------------- /3_array/ej_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_8.py -------------------------------------------------------------------------------- /3_array/ej_filtrar_lista.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_filtrar_lista.py -------------------------------------------------------------------------------- /3_array/ej_frutas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_frutas.py -------------------------------------------------------------------------------- /3_array/ej_inventario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_inventario.py -------------------------------------------------------------------------------- /3_array/ej_lista.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_lista.py -------------------------------------------------------------------------------- /3_array/ej_orden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_orden.py -------------------------------------------------------------------------------- /3_array/ej_sepPalabra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_sepPalabra.py -------------------------------------------------------------------------------- /3_array/ej_vacasLocas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_vacasLocas.py -------------------------------------------------------------------------------- /3_array/ej_vacas_casiT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_vacas_casiT.py -------------------------------------------------------------------------------- /3_array/ej_verduras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/ej_verduras.py -------------------------------------------------------------------------------- /3_array/lala.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/lala.py -------------------------------------------------------------------------------- /3_array/listas_bi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/listas_bi.py -------------------------------------------------------------------------------- /3_array/separador_roto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/separador_roto.py -------------------------------------------------------------------------------- /3_array/vacas_terminadas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/3_array/vacas_terminadas.py -------------------------------------------------------------------------------- /4_diccionarios/4_2_ej.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/4_diccionarios/4_2_ej.py -------------------------------------------------------------------------------- /4_diccionarios/4_3_ej.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/4_diccionarios/4_3_ej.py -------------------------------------------------------------------------------- /4_diccionarios/animales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/4_diccionarios/animales.py -------------------------------------------------------------------------------- /4_diccionarios/diccionarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/4_diccionarios/diccionarios.py -------------------------------------------------------------------------------- /4_diccionarios/ej_agregar_cosas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/4_diccionarios/ej_agregar_cosas.py -------------------------------------------------------------------------------- /4_diccionarios/ej_listaDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/4_diccionarios/ej_listaDict.py -------------------------------------------------------------------------------- /4_diccionarios/ej_tarea.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/4_diccionarios/ej_tarea.txt -------------------------------------------------------------------------------- /4_diccionarios/mascotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/4_diccionarios/mascotas.py -------------------------------------------------------------------------------- /5_funciones_import/5_1_intro-a-funciones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/5_funciones_import/5_1_intro-a-funciones.py -------------------------------------------------------------------------------- /5_funciones_import/5_2_escribir_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/5_funciones_import/5_2_escribir_func.py -------------------------------------------------------------------------------- /5_funciones_import/5_3_ej_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/5_funciones_import/5_3_ej_func.py -------------------------------------------------------------------------------- /5_funciones_import/5_ej_cilindros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/5_funciones_import/5_ej_cilindros.py -------------------------------------------------------------------------------- /5_funciones_import/__pycache__/listas.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/5_funciones_import/__pycache__/listas.cpython-311.pyc -------------------------------------------------------------------------------- /5_funciones_import/ej_texto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/5_funciones_import/ej_texto.py -------------------------------------------------------------------------------- /5_funciones_import/ejemplo_func_limonSoda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/5_funciones_import/ejemplo_func_limonSoda.py -------------------------------------------------------------------------------- /5_funciones_import/ejemplo_listas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/5_funciones_import/ejemplo_listas.py -------------------------------------------------------------------------------- /5_funciones_import/ejercicio_multiplos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/5_funciones_import/ejercicio_multiplos.py -------------------------------------------------------------------------------- /5_funciones_import/listas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/5_funciones_import/listas.py -------------------------------------------------------------------------------- /6_archivos/6_1_archivos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/6_archivos/6_1_archivos.py -------------------------------------------------------------------------------- /6_archivos/6_1_ej_archivos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/6_archivos/6_1_ej_archivos.py -------------------------------------------------------------------------------- /ComandosGIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/ComandosGIT.txt -------------------------------------------------------------------------------- /Hola Mundo.txt: -------------------------------------------------------------------------------- 1 | Hola Mundo -------------------------------------------------------------------------------- /__pycache__/michiHerramientas.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/__pycache__/michiHerramientas.cpython-311.pyc -------------------------------------------------------------------------------- /ej_01.py: -------------------------------------------------------------------------------- 1 | print('Esto es un ejemplo') 2 | -------------------------------------------------------------------------------- /ej_avanzados/__pycache__/michiHerramientas.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/ej_avanzados/__pycache__/michiHerramientas.cpython-311.pyc -------------------------------------------------------------------------------- /ej_avanzados/carritoCompras_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/ej_avanzados/carritoCompras_1.py -------------------------------------------------------------------------------- /ej_avanzados/carritoCompras_1_resuelto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/ej_avanzados/carritoCompras_1_resuelto.py -------------------------------------------------------------------------------- /ej_avanzados/carrito_compras_Menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/ej_avanzados/carrito_compras_Menu.py -------------------------------------------------------------------------------- /ej_avanzados/ej_helados.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/ej_avanzados/ej_helados.py -------------------------------------------------------------------------------- /ej_avanzados/ejercicioHelados.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/ej_avanzados/ejercicioHelados.py -------------------------------------------------------------------------------- /ej_avanzados/ejercicioTelefono.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/ej_avanzados/ejercicioTelefono.py -------------------------------------------------------------------------------- /ej_avanzados/ejercicioTelefono_resuelto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/ej_avanzados/ejercicioTelefono_resuelto.py -------------------------------------------------------------------------------- /ej_avanzados/michiHerramientas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/ej_avanzados/michiHerramientas.py -------------------------------------------------------------------------------- /ej_avanzados/sistemaLogin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/ej_avanzados/sistemaLogin.py -------------------------------------------------------------------------------- /ej_avanzados/sistemaLogin_resuelto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/ej_avanzados/sistemaLogin_resuelto.py -------------------------------------------------------------------------------- /ej_avanzados/sistemaLogin_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/ej_avanzados/sistemaLogin_v2.py -------------------------------------------------------------------------------- /ej_avanzados/telefonos_terminado.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/ej_avanzados/telefonos_terminado.py -------------------------------------------------------------------------------- /extra/ejemplo_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/extra/ejemplo_class.py -------------------------------------------------------------------------------- /lista_nombres.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/lista_nombres.txt -------------------------------------------------------------------------------- /lista_nombres2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/lista_nombres2.txt -------------------------------------------------------------------------------- /productos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/productos.csv -------------------------------------------------------------------------------- /productos2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/productos2.csv -------------------------------------------------------------------------------- /productos3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/productos3.csv -------------------------------------------------------------------------------- /sabores_helado.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/sabores_helado.txt -------------------------------------------------------------------------------- /telefonos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/telefonos.csv -------------------------------------------------------------------------------- /users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMMProfeDuoc/Programacion/HEAD/users.csv --------------------------------------------------------------------------------