Diferencia entre revisiones de «Usuario:Lmorillas/desarrollo web servidor/intro python»
De WikiEducator
(7 revisiones intermedias por el mismo usuario no mostrado) | |||
Línea 4: | Línea 4: | ||
* Instala Python en tu Sistema Operativo (http://www.python.org) | * Instala Python en tu Sistema Operativo (http://www.python.org) | ||
* http://learnpythonthehardway.org/book/ | * http://learnpythonthehardway.org/book/ | ||
+ | * Documentación general de Python: http://python.org/doc/ | ||
|TOCdepth=2 | |TOCdepth=2 | ||
|Title=Introducción e instalación | |Title=Introducción e instalación | ||
Línea 33: | Línea 34: | ||
|Title=Ficheros | |Title=Ficheros | ||
}} | }} | ||
+ | |||
+ | {{Actividad| | ||
+ | * Ejercicios 18 a 21 de http://learnpythonthehardway.org (def, return, parámetros) | ||
+ | |TOCdepth=2 | ||
+ | |Title=Funciones | ||
+ | }} | ||
+ | |||
+ | {{Actividad| | ||
+ | if <condición> : | ||
+ | bloque | ||
+ | bloque | ||
+ | else: | ||
+ | bloque | ||
+ | bloque | ||
+ | |TOCdepth=2 | ||
+ | |Title=Condicionales | ||
+ | }} | ||
+ | |||
+ | {{Actividad| | ||
+ | for elemento in secuencia: | ||
+ | bloque | ||
+ | for x in range(y): | ||
+ | bloque | ||
+ | while <condición> : | ||
+ | bloque | ||
+ | |TOCdepth=2 | ||
+ | |Title=Repeticiones | ||
+ | }} | ||
+ | |||
+ | {{Actividad| | ||
+ | * [http://es.wikieducator.org/Usuario:Lmorillas/modulo_programacion/python/easygui easygui] | ||
+ | |TOCdepth=2 | ||
+ | |Title=Interfaces gráficas sencillas | ||
+ | }} | ||
+ | |||
+ | |||
+ | {{Actividad| | ||
+ | * http://rgruet.free.fr/PQR27/PQR2.7.html | ||
+ | * http://python.org.ar/AprendiendoPython | ||
+ | * http://python.org/doc/ | ||
+ | |||
+ | ===Y más doc ... === | ||
+ | * https://developers.google.com/edu/python/ | ||
+ | * http://www.itmaybeahack.com/homepage/books/index.html | ||
+ | |||
+ | |TOCdepth=2 | ||
+ | |Title=Documentación de repaso | ||
+ | }} | ||
+ | |||
+ | |||
+ | {{Actividad| | ||
+ | * Sitio: http://www.crummy.com/software/BeautifulSoup/ | ||
+ | * Documentación: http://www.crummy.com/software/BeautifulSoup/bs4/doc/ | ||
+ | |TOCdepth=2 | ||
+ | |Title=BeautifulSoup | ||
+ | }} | ||
+ | |||
+ | {{Actividad| | ||
+ | * Sitio: http://wwwsearch.sourceforge.net/mechanize/ | ||
+ | |TOCdepth=2 | ||
+ | |Title=Mechanize | ||
+ | }} | ||
+ | |||
+ | |||
+ | |||
Última revisión de 20:13 8 oct 2013
Contenido
Introducción e instalación
|
Primeros pasos
Variables, cadenas de caracteres, preguntar.
|
Parámetros en los programas
|
Ficheros
|
Funciones
|
Condicionales
Repeticiones
Interfaces gráficas sencillas
|
Documentación de repaso
BeautifulSoup
|
Mechanize
|