forked from BartolomeSintes/mclibre-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
187 lines (170 loc) · 8.82 KB
/
index.html
File metadata and controls
187 lines (170 loc) · 8.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Introducción a la programación con Pyhton. Bartolomé Sintes Marco</title>
<link href="varios/python.css" rel="stylesheet" type="text/css" title="mclibre" />
<link rel="icon" href="varios/favicon.ico" />
</head>
<body>
<nav class="portada">
<p>
<a href="http://www.mclibre.org/"><img src="varios/iconos/icono-logo-mclibre.svg" alt="Logotipo www.mclibre.org" title="Material Curricular Libre - www.mclibre.org" width="144" height="76" /></a>
</p>
</nav>
<h1>Introducción a la programación con Python</h1>
<p>Estos apuntes del <strong>Curso de iniciación a la programación en Python</strong> se impartieron durante el segundo y tercer trimestre del curso 2016/2017 en el módulo <strong>Lenguaje de Marcas y Sistemas de Gestión de la Información</strong> del ciclo formativo <strong>Administración de Sistemas Informáticos en Red</strong> (ASIR) en el IES Abastos de Valencia (España).</p>
<p><a href="https://github.com/BartolomeSintes/mclibre-python"><img style="position: absolute; top: 0; right: 0; border: 0; opacity: 0.7;" src="https://camo.githubusercontent.com/e7bbb0521b397edbd5fe43e7f760759336b5e05f/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677265656e5f3030373230302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_green_007200.png"></a></p>
<ul>
<li><a href="otros/presentacion.html">Presentación y licencia</a></li>
</ul>
<div class="filaflex nogrow no-justificado">
<div>
<h2>Lecciones Python</h2>
<p>Hola, mundo</p>
<ul>
<li><a href="lecciones/python-elementos.html">Elementos de un programa</a></li>
</ul>
<p>Tipos de datos</p>
<ul>
<li><a href="lecciones/python-operaciones-matematicas.html">Números y operaciones aritméticas</a></li>
<li><a href="lecciones/python-cadenas.html">Cadenas de texto</a></li>
<li><a href="lecciones/python-variables.html">Variables (1)</a></li>
<li><a href="lecciones/python-booleanos.html">Booleanos</a></li>
<li>Secuencias:
<a href="lecciones/python-tupla.html">Tuplas</a>,
<a href="lecciones/python-range.html">Rangos</a>,
<a href="lecciones/python-listas.html">Listas</a>
</li>
<li>
<a href="lecciones/python-variables-2.html">Variables (2)</a> -
<a href="lecciones/python-variables-3.html">Variables (3)</a>
</li>
</ul>
<p>Entrada y salida</p>
<ul>
<li><a href="lecciones/python-salida-pantalla.html">Salida por pantalla</a></li>
<li><a href="lecciones/python-entrada-teclado.html">Entrada por teclado</a></li>
<li><a href="lecciones/python-ficheros.html">Ficheros</a></li>
</ul>
<p>Estructuras de control</p>
<ul>
<li>Sentencias condicionales: <a href="lecciones/python-if-else.html">if ... elif ... else ...</a></li>
<li>Iteraciones: <a href="lecciones/python-for.html">bucle for (1)</a> - <a href="lecciones/python-for-2.html">bucle for (2)</a></li>
<li>Iteraciones: <a href="lecciones/python-while.html">bucle while</a></li>
</ul>
<p>Funciones</p>
<ul>
<li><a href="lecciones/python-biblioteca-estandar.html">Biblioteca estándar</a></li>
<li><a href="lecciones/python-funciones-1.html">Funciones (1)</a> - <a href="lecciones/python-funciones-2.html">Funciones (2)</a></li>
</ul>
<p>Gráficos</p>
<ul>
<li>Tortuga:
<a href="lecciones/python-turtle-1.html">turtle (1)</a> -
<a href="lecciones/python-turtle-2.html">turtle (2)</a> -
<a href="lecciones/python-turtle-3.html">turtle (3)</a>
</li>
</ul>
<p>Otros</p>
<ul>
<li><a href="lecciones/brython-1.html">Brython</a></li>
<li><a href="lecciones/python-biblioteca-random.html">Valores aleatorios</a></li>
<li><a href="lecciones/python-detalles.html">Detalles del lenguaje</a></li>
<li><a href="lecciones/python-restos.html">Restos</a></li>
</ul>
</div>
<div>
<h2>Ejercicios</h2>
<ul>
<li><a href="ejercicios/ej-variables.html">Variables, E/S y Operaciones aritméticas</a></li>
<li>
<a href="ejercicios/ej-booleanos.html">Expresiones lógicas</a> -
<a href="ejercicios/ej-booleanos-2.html">Expresiones lógicas (2)</a>
</li>
<li>Sentencias condicionales: <a href="ejercicios/ej-if-else.html">if ... elif ... else ...</a></li>
<li>Listas de enteros: <a href="ejercicios/ej-range.html">el tipo range()</a> </li>
<li>Iteraciones:
<a href="ejercicios/ej-for-1.html">bucle for (1)</a> -
<a href="ejercicios/ej-for-2.html">bucle for (2)</a> -
<a href="ejercicios/ej-sucesiones.html">Sucesiones</a></li>
<li><a href="ejercicios/ej-ficheros-1.html">Ficheros (1)</a></li>
<li>
<a href="ejercicios/ej-listas-1.html">Listas (1)</a> -
<a href="ejercicios/ej-listas-2.html">Listas (2)</a>
</li>
<li>
<a href="ejercicios/ej-white-1.html">Bucle while (1)</a> -
<a href="ejercicios/ej-white-2.html">Bucle while (2)</a>
</li>
<li>
<a href="ejercicios/ej-funciones-1.html">Funciones (1)</a> -
<a href="ejercicios/ej-funciones-2.html">Funciones (2)</a>
</li>
<li>
<a href="ejercicios/ej-repaso-01.html">Repaso (1)</a> -
<a href="ejercicios/ej-repaso-02.html">Repaso (2)</a>
</li>
<li>Gráficos
<ul>
<li>SVG:
<a href="ejercicios/ej-svg-1.html">Coordenadas</a> -
</li>
<li>Ficheros (SVG):
<a href="ejercicios/ej-svg-ficheros-1.html">Ficheros (1)</a> -
<a href="ejercicios/ej-svg-ficheros-2.html">Ficheros (2)</a> -
<a href="ejercicios/ej-svg-ficheros-3.html">Ficheros (3)</a> -
<a href="ejercicios/ej-svg-ficheros-4.html">Ficheros (4)</a>
</li>
<li>Brython (SVG):
<a href="ejercicios/ej-svg-brython-1.html">Brython (1)</a> -
<a href="ejercicios/ej-svg-brython-2.html">Brython (2)</a> -
<a href="ejercicios/ej-svg-brython-3.html">Brython (3)</a> -
<a href="ejercicios/ej-svg-brython-4.html">Brython (4)</a>
</li>
<li>Tortuga:
<a href="ejercicios/ej-turtle-1.html">turtle (1)</a> -
<a href="ejercicios/ej-turtle-2.html">turtle (2)</a> -
<a href="ejercicios/ej-turtle-3.html">turtle (3)</a> -
<a href="ejercicios/ej-turtle-4.html">turtle (4)</a>
</li>
<li>ASCII:
<a href="ejercicios/ej-ascii-1.html">bucle for (1)</a> -
<a href="ejercicios/ej-ascii-2.html">bucle for (2)</a>
</li>
</ul>
</li>
</ul>
<h2>Exámenes</h2>
<ul>
<li><a href="examenes/examenes.html">Exámenes</a></li>
</ul>
</div>
<div>
<h2>Software</h2>
<ul>
<li><a href="otros/lenguajes-programacion.html">Lenguajes de programación</a></li>
<li><a href="otros/historia.html">Historia de Python</a></li>
<li><a href="otros/python-instalacion.html">Instalación de Python</a></li>
<li><a href="otros/python-idle.html">IDLE, el entorno de desarrollo de Python</a></li>
</ul>
<h2>Otros</h2>
<ul>
<li><a href="otros/libro-de-estilo.html">Libro de estilo</a></li>
<li><a href="otros/documentacion.html">Documentación</a></li>
<li><a href="otros/retos.html">Retos de programación</a></li>
<li><a href="otros/formulas.html">Fórmulas matemáticas</a></li>
<li><a href="otros/sucesiones-aritmeticas.html">Sucesiones aritméticas</a></li>
<li><a href="otros/clase.html">Lecciones impartidas en clase</a></li>
</ul>
</div>
</div>
<footer>
<p class="ultmod">Última modificación de alguna página de este curso: 26 de diciembre de 2017</p>
<p class="licencia"><a rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/deed.es_ES"><img src="varios/iconos/icono-cc-by-sa.svg" alt="Licencia Creative Commons" title="Licencia Creative Commons BY-SA" width="120" height="42" /></a><br />
Esta página forma parte del curso <a href="http://www.mclibre.org/consultar/python/">Introducción a la programación con Python</a> por <a href="http://www.mclibre.org/">Bartolomé Sintes Marco</a><br />
que se distribuye bajo una <a rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/deed.es_ES">Licencia Creative Commons Reconocimiento-CompartirIgual 4.0 Internacional (CC BY-SA 4.0)</a>.</p>
</footer>
</body>
</html>