├── .gitignore ├── README.md ├── curso ├── u1 │ ├── README.md │ ├── u1.odp │ └── u1.pdf ├── u10 │ ├── README.md │ ├── u10.odp │ └── u10.pdf ├── u11 │ ├── README.md │ ├── u11.odp │ └── u11.pdf ├── u12 │ ├── README.md │ ├── u12.odp │ └── u12.pdf ├── u13 │ ├── README.md │ ├── u13.odp │ └── u13.pdf ├── u14 │ ├── README.md │ ├── ejercicio1.py │ ├── ejercicio2.py │ ├── ejercicio3.py │ ├── ejercicio4.py │ ├── ejercicio5.py │ └── ejercicio6.py ├── u15 │ ├── README.md │ ├── u15.odp │ └── u15.pdf ├── u16 │ ├── README.md │ ├── ejercicio1.py │ ├── ejercicio2.py │ ├── ejercicio3.py │ ├── ejercicio4.py │ ├── ejercicio5.py │ └── ejercicio6.py ├── u17 │ ├── README.md │ ├── u17.odp │ └── u17.pdf ├── u18 │ ├── README.md │ ├── ejercicio1.py │ ├── ejercicio2.py │ ├── ejercicio3.py │ ├── ejercicio4.py │ ├── ejercicio5.py │ └── ejercicio6.py ├── u19 │ ├── README.md │ ├── u19.odp │ └── u19.pdf ├── u2 │ ├── README.md │ ├── u2.odp │ └── u2.pdf ├── u20 │ ├── README.md │ ├── u20.odp │ └── u20.pdf ├── u21 │ ├── README.md │ ├── u21.odp │ └── u21.pdf ├── u22 │ ├── README.md │ ├── ejercicio1.py │ ├── ejercicio2.py │ ├── ejercicio3.py │ └── ejercicio4.py ├── u23 │ ├── README.md │ ├── u23.odp │ └── u23.pdf ├── u24 │ └── README.md ├── u25 │ └── README.md ├── u26 │ └── README.md ├── u27 │ └── README.md ├── u28 │ ├── README.md │ └── digit.py ├── u29 │ ├── README.md │ ├── ejercicio1.py │ ├── ejercicio2.py │ ├── ejercicio3.py │ ├── ejercicio4.py │ └── ejercicio5.py ├── u3 │ ├── README.md │ ├── u3.odp │ └── u3.pdf ├── u30 │ ├── README.md │ └── bytes.py ├── u31 │ └── README.md ├── u32 │ └── README.md ├── u33 │ └── README.md ├── u34 │ └── README.md ├── u35 │ ├── README.md │ ├── ejercicio1.py │ ├── ejercicio2.py │ ├── ejercicio3.py │ └── ejercicio4.py ├── u36 │ └── README.md ├── u37 │ ├── README.md │ ├── ejemplo1.csv │ ├── ejemplo2.csv │ └── ejemplo3.csv ├── u38 │ ├── README.md │ └── ejemplo1.json ├── u39 │ ├── README.md │ ├── ejemplo1.py │ ├── ejemplo2.py │ ├── ejemplo3.py │ ├── ejemplo4.py │ ├── ejemplo5.py │ └── ejemplo6.py ├── u4 │ ├── README.md │ ├── u4.odp │ └── u4.pdf ├── u40 │ ├── README.md │ ├── dibujos.py │ ├── operaciones │ │ ├── __init.py__ │ │ └── potencias.py │ └── potencias.py ├── u41 │ ├── README.md │ ├── destino.txt │ ├── ejercicio1.py │ ├── ejercicio2.py │ ├── ejercicio3.py │ ├── ejercicio4.py │ ├── origen.txt │ └── sumar.py ├── u42 │ └── README.md ├── u43 │ └── README.md ├── u44 │ └── README.md ├── u45 │ ├── README.md │ ├── ejemplo1.py │ ├── ejemplo2.py │ └── ejemplo3.py ├── u46 │ ├── README.md │ ├── ejemplo1.py │ └── ejemplo2.py ├── u47 │ ├── README.md │ ├── ejemplo1.py │ ├── ejemplo2.py │ └── ejemplo3.py ├── u48 │ ├── README.md │ ├── ejercicio1.py │ ├── ejercicio2.py │ ├── ejercicio3.py │ ├── ejercicio4.py │ └── ejercicio5.py ├── u49 │ ├── README.md │ ├── ejercicio.py │ └── liga.csv ├── u5 │ ├── README.md │ ├── u5.odp │ └── u5.pdf ├── u50 │ ├── README.md │ └── punto.py ├── u51 │ ├── README.md │ ├── ejemplo1.py │ └── ejemplo2.py ├── u52 │ ├── README.md │ ├── circulo.py │ ├── circulo2.py │ └── circulofinal.py ├── u53 │ ├── README.md │ ├── ejercicio1.py │ ├── ejercicio2.py │ ├── ejercicio3.py │ └── ejercicio4.py ├── u54 │ ├── README.md │ ├── alumno.py │ ├── dni.py │ ├── notas.py │ └── persona.py ├── u6 │ ├── README.md │ ├── u6.odp │ └── u6.pdf ├── u7 │ ├── README.md │ ├── u7.odp │ └── u7.pdf ├── u8 │ ├── README.md │ ├── u8.odp │ └── u8.pdf └── u9 │ ├── README.md │ ├── u9.odp │ └── u9.pdf ├── modelo.odp ├── presentacion.odp └── presentacion.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/README.md -------------------------------------------------------------------------------- /curso/u1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u1/README.md -------------------------------------------------------------------------------- /curso/u1/u1.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u1/u1.odp -------------------------------------------------------------------------------- /curso/u1/u1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u1/u1.pdf -------------------------------------------------------------------------------- /curso/u10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u10/README.md -------------------------------------------------------------------------------- /curso/u10/u10.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u10/u10.odp -------------------------------------------------------------------------------- /curso/u10/u10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u10/u10.pdf -------------------------------------------------------------------------------- /curso/u11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u11/README.md -------------------------------------------------------------------------------- /curso/u11/u11.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u11/u11.odp -------------------------------------------------------------------------------- /curso/u11/u11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u11/u11.pdf -------------------------------------------------------------------------------- /curso/u12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u12/README.md -------------------------------------------------------------------------------- /curso/u12/u12.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u12/u12.odp -------------------------------------------------------------------------------- /curso/u12/u12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u12/u12.pdf -------------------------------------------------------------------------------- /curso/u13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u13/README.md -------------------------------------------------------------------------------- /curso/u13/u13.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u13/u13.odp -------------------------------------------------------------------------------- /curso/u13/u13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u13/u13.pdf -------------------------------------------------------------------------------- /curso/u14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u14/README.md -------------------------------------------------------------------------------- /curso/u14/ejercicio1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u14/ejercicio1.py -------------------------------------------------------------------------------- /curso/u14/ejercicio2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u14/ejercicio2.py -------------------------------------------------------------------------------- /curso/u14/ejercicio3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u14/ejercicio3.py -------------------------------------------------------------------------------- /curso/u14/ejercicio4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u14/ejercicio4.py -------------------------------------------------------------------------------- /curso/u14/ejercicio5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u14/ejercicio5.py -------------------------------------------------------------------------------- /curso/u14/ejercicio6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u14/ejercicio6.py -------------------------------------------------------------------------------- /curso/u15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u15/README.md -------------------------------------------------------------------------------- /curso/u15/u15.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u15/u15.odp -------------------------------------------------------------------------------- /curso/u15/u15.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u15/u15.pdf -------------------------------------------------------------------------------- /curso/u16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u16/README.md -------------------------------------------------------------------------------- /curso/u16/ejercicio1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u16/ejercicio1.py -------------------------------------------------------------------------------- /curso/u16/ejercicio2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u16/ejercicio2.py -------------------------------------------------------------------------------- /curso/u16/ejercicio3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u16/ejercicio3.py -------------------------------------------------------------------------------- /curso/u16/ejercicio4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u16/ejercicio4.py -------------------------------------------------------------------------------- /curso/u16/ejercicio5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u16/ejercicio5.py -------------------------------------------------------------------------------- /curso/u16/ejercicio6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u16/ejercicio6.py -------------------------------------------------------------------------------- /curso/u17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u17/README.md -------------------------------------------------------------------------------- /curso/u17/u17.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u17/u17.odp -------------------------------------------------------------------------------- /curso/u17/u17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u17/u17.pdf -------------------------------------------------------------------------------- /curso/u18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u18/README.md -------------------------------------------------------------------------------- /curso/u18/ejercicio1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u18/ejercicio1.py -------------------------------------------------------------------------------- /curso/u18/ejercicio2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u18/ejercicio2.py -------------------------------------------------------------------------------- /curso/u18/ejercicio3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u18/ejercicio3.py -------------------------------------------------------------------------------- /curso/u18/ejercicio4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u18/ejercicio4.py -------------------------------------------------------------------------------- /curso/u18/ejercicio5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u18/ejercicio5.py -------------------------------------------------------------------------------- /curso/u18/ejercicio6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u18/ejercicio6.py -------------------------------------------------------------------------------- /curso/u19/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u19/README.md -------------------------------------------------------------------------------- /curso/u19/u19.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u19/u19.odp -------------------------------------------------------------------------------- /curso/u19/u19.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u19/u19.pdf -------------------------------------------------------------------------------- /curso/u2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u2/README.md -------------------------------------------------------------------------------- /curso/u2/u2.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u2/u2.odp -------------------------------------------------------------------------------- /curso/u2/u2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u2/u2.pdf -------------------------------------------------------------------------------- /curso/u20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u20/README.md -------------------------------------------------------------------------------- /curso/u20/u20.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u20/u20.odp -------------------------------------------------------------------------------- /curso/u20/u20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u20/u20.pdf -------------------------------------------------------------------------------- /curso/u21/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u21/README.md -------------------------------------------------------------------------------- /curso/u21/u21.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u21/u21.odp -------------------------------------------------------------------------------- /curso/u21/u21.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u21/u21.pdf -------------------------------------------------------------------------------- /curso/u22/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u22/README.md -------------------------------------------------------------------------------- /curso/u22/ejercicio1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u22/ejercicio1.py -------------------------------------------------------------------------------- /curso/u22/ejercicio2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u22/ejercicio2.py -------------------------------------------------------------------------------- /curso/u22/ejercicio3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u22/ejercicio3.py -------------------------------------------------------------------------------- /curso/u22/ejercicio4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u22/ejercicio4.py -------------------------------------------------------------------------------- /curso/u23/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u23/README.md -------------------------------------------------------------------------------- /curso/u23/u23.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u23/u23.odp -------------------------------------------------------------------------------- /curso/u23/u23.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u23/u23.pdf -------------------------------------------------------------------------------- /curso/u24/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u24/README.md -------------------------------------------------------------------------------- /curso/u25/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u25/README.md -------------------------------------------------------------------------------- /curso/u26/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u26/README.md -------------------------------------------------------------------------------- /curso/u27/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u27/README.md -------------------------------------------------------------------------------- /curso/u28/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u28/README.md -------------------------------------------------------------------------------- /curso/u28/digit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u28/digit.py -------------------------------------------------------------------------------- /curso/u29/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u29/README.md -------------------------------------------------------------------------------- /curso/u29/ejercicio1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u29/ejercicio1.py -------------------------------------------------------------------------------- /curso/u29/ejercicio2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u29/ejercicio2.py -------------------------------------------------------------------------------- /curso/u29/ejercicio3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u29/ejercicio3.py -------------------------------------------------------------------------------- /curso/u29/ejercicio4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u29/ejercicio4.py -------------------------------------------------------------------------------- /curso/u29/ejercicio5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u29/ejercicio5.py -------------------------------------------------------------------------------- /curso/u3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u3/README.md -------------------------------------------------------------------------------- /curso/u3/u3.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u3/u3.odp -------------------------------------------------------------------------------- /curso/u3/u3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u3/u3.pdf -------------------------------------------------------------------------------- /curso/u30/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u30/README.md -------------------------------------------------------------------------------- /curso/u30/bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u30/bytes.py -------------------------------------------------------------------------------- /curso/u31/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u31/README.md -------------------------------------------------------------------------------- /curso/u32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u32/README.md -------------------------------------------------------------------------------- /curso/u33/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u33/README.md -------------------------------------------------------------------------------- /curso/u34/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u34/README.md -------------------------------------------------------------------------------- /curso/u35/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u35/README.md -------------------------------------------------------------------------------- /curso/u35/ejercicio1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u35/ejercicio1.py -------------------------------------------------------------------------------- /curso/u35/ejercicio2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u35/ejercicio2.py -------------------------------------------------------------------------------- /curso/u35/ejercicio3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u35/ejercicio3.py -------------------------------------------------------------------------------- /curso/u35/ejercicio4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u35/ejercicio4.py -------------------------------------------------------------------------------- /curso/u36/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u36/README.md -------------------------------------------------------------------------------- /curso/u37/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u37/README.md -------------------------------------------------------------------------------- /curso/u37/ejemplo1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u37/ejemplo1.csv -------------------------------------------------------------------------------- /curso/u37/ejemplo2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u37/ejemplo2.csv -------------------------------------------------------------------------------- /curso/u37/ejemplo3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u37/ejemplo3.csv -------------------------------------------------------------------------------- /curso/u38/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u38/README.md -------------------------------------------------------------------------------- /curso/u38/ejemplo1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u38/ejemplo1.json -------------------------------------------------------------------------------- /curso/u39/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u39/README.md -------------------------------------------------------------------------------- /curso/u39/ejemplo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u39/ejemplo1.py -------------------------------------------------------------------------------- /curso/u39/ejemplo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u39/ejemplo2.py -------------------------------------------------------------------------------- /curso/u39/ejemplo3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u39/ejemplo3.py -------------------------------------------------------------------------------- /curso/u39/ejemplo4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u39/ejemplo4.py -------------------------------------------------------------------------------- /curso/u39/ejemplo5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u39/ejemplo5.py -------------------------------------------------------------------------------- /curso/u39/ejemplo6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u39/ejemplo6.py -------------------------------------------------------------------------------- /curso/u4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u4/README.md -------------------------------------------------------------------------------- /curso/u4/u4.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u4/u4.odp -------------------------------------------------------------------------------- /curso/u4/u4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u4/u4.pdf -------------------------------------------------------------------------------- /curso/u40/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u40/README.md -------------------------------------------------------------------------------- /curso/u40/dibujos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u40/dibujos.py -------------------------------------------------------------------------------- /curso/u40/operaciones/__init.py__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curso/u40/operaciones/potencias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u40/operaciones/potencias.py -------------------------------------------------------------------------------- /curso/u40/potencias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u40/potencias.py -------------------------------------------------------------------------------- /curso/u41/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u41/README.md -------------------------------------------------------------------------------- /curso/u41/destino.txt: -------------------------------------------------------------------------------- 1 | hola 2 | -------------------------------------------------------------------------------- /curso/u41/ejercicio1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u41/ejercicio1.py -------------------------------------------------------------------------------- /curso/u41/ejercicio2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u41/ejercicio2.py -------------------------------------------------------------------------------- /curso/u41/ejercicio3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u41/ejercicio3.py -------------------------------------------------------------------------------- /curso/u41/ejercicio4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u41/ejercicio4.py -------------------------------------------------------------------------------- /curso/u41/origen.txt: -------------------------------------------------------------------------------- 1 | hola 2 | -------------------------------------------------------------------------------- /curso/u41/sumar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u41/sumar.py -------------------------------------------------------------------------------- /curso/u42/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u42/README.md -------------------------------------------------------------------------------- /curso/u43/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u43/README.md -------------------------------------------------------------------------------- /curso/u44/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u44/README.md -------------------------------------------------------------------------------- /curso/u45/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u45/README.md -------------------------------------------------------------------------------- /curso/u45/ejemplo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u45/ejemplo1.py -------------------------------------------------------------------------------- /curso/u45/ejemplo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u45/ejemplo2.py -------------------------------------------------------------------------------- /curso/u45/ejemplo3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u45/ejemplo3.py -------------------------------------------------------------------------------- /curso/u46/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u46/README.md -------------------------------------------------------------------------------- /curso/u46/ejemplo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u46/ejemplo1.py -------------------------------------------------------------------------------- /curso/u46/ejemplo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u46/ejemplo2.py -------------------------------------------------------------------------------- /curso/u47/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u47/README.md -------------------------------------------------------------------------------- /curso/u47/ejemplo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u47/ejemplo1.py -------------------------------------------------------------------------------- /curso/u47/ejemplo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u47/ejemplo2.py -------------------------------------------------------------------------------- /curso/u47/ejemplo3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u47/ejemplo3.py -------------------------------------------------------------------------------- /curso/u48/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u48/README.md -------------------------------------------------------------------------------- /curso/u48/ejercicio1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u48/ejercicio1.py -------------------------------------------------------------------------------- /curso/u48/ejercicio2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u48/ejercicio2.py -------------------------------------------------------------------------------- /curso/u48/ejercicio3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u48/ejercicio3.py -------------------------------------------------------------------------------- /curso/u48/ejercicio4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u48/ejercicio4.py -------------------------------------------------------------------------------- /curso/u48/ejercicio5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u48/ejercicio5.py -------------------------------------------------------------------------------- /curso/u49/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u49/README.md -------------------------------------------------------------------------------- /curso/u49/ejercicio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u49/ejercicio.py -------------------------------------------------------------------------------- /curso/u49/liga.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u49/liga.csv -------------------------------------------------------------------------------- /curso/u5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u5/README.md -------------------------------------------------------------------------------- /curso/u5/u5.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u5/u5.odp -------------------------------------------------------------------------------- /curso/u5/u5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u5/u5.pdf -------------------------------------------------------------------------------- /curso/u50/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u50/README.md -------------------------------------------------------------------------------- /curso/u50/punto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u50/punto.py -------------------------------------------------------------------------------- /curso/u51/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u51/README.md -------------------------------------------------------------------------------- /curso/u51/ejemplo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u51/ejemplo1.py -------------------------------------------------------------------------------- /curso/u51/ejemplo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u51/ejemplo2.py -------------------------------------------------------------------------------- /curso/u52/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u52/README.md -------------------------------------------------------------------------------- /curso/u52/circulo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u52/circulo.py -------------------------------------------------------------------------------- /curso/u52/circulo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u52/circulo2.py -------------------------------------------------------------------------------- /curso/u52/circulofinal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u52/circulofinal.py -------------------------------------------------------------------------------- /curso/u53/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u53/README.md -------------------------------------------------------------------------------- /curso/u53/ejercicio1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u53/ejercicio1.py -------------------------------------------------------------------------------- /curso/u53/ejercicio2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u53/ejercicio2.py -------------------------------------------------------------------------------- /curso/u53/ejercicio3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u53/ejercicio3.py -------------------------------------------------------------------------------- /curso/u53/ejercicio4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u53/ejercicio4.py -------------------------------------------------------------------------------- /curso/u54/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u54/README.md -------------------------------------------------------------------------------- /curso/u54/alumno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u54/alumno.py -------------------------------------------------------------------------------- /curso/u54/dni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u54/dni.py -------------------------------------------------------------------------------- /curso/u54/notas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u54/notas.py -------------------------------------------------------------------------------- /curso/u54/persona.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u54/persona.py -------------------------------------------------------------------------------- /curso/u6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u6/README.md -------------------------------------------------------------------------------- /curso/u6/u6.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u6/u6.odp -------------------------------------------------------------------------------- /curso/u6/u6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u6/u6.pdf -------------------------------------------------------------------------------- /curso/u7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u7/README.md -------------------------------------------------------------------------------- /curso/u7/u7.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u7/u7.odp -------------------------------------------------------------------------------- /curso/u7/u7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u7/u7.pdf -------------------------------------------------------------------------------- /curso/u8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u8/README.md -------------------------------------------------------------------------------- /curso/u8/u8.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u8/u8.odp -------------------------------------------------------------------------------- /curso/u8/u8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u8/u8.pdf -------------------------------------------------------------------------------- /curso/u9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u9/README.md -------------------------------------------------------------------------------- /curso/u9/u9.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u9/u9.odp -------------------------------------------------------------------------------- /curso/u9/u9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/curso/u9/u9.pdf -------------------------------------------------------------------------------- /modelo.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/modelo.odp -------------------------------------------------------------------------------- /presentacion.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/presentacion.odp -------------------------------------------------------------------------------- /presentacion.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWebinarsNet/curso_python3/HEAD/presentacion.pdf --------------------------------------------------------------------------------