Diferencia entre revisiones de «Usuario:Lmorillas/desarrollo web servidor/intro python»

De WikiEducator
Saltar a: navegación, buscar
 
(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 19:13 8 oct 2013


Introducción e instalación

Icon activity.jpg

Introducción e instalación





Primeros pasos

Icon activity.jpg

Primeros pasos

  • Instalación y configuración del sistema
  • Primeros pasos: uso del intérprete print, comentarios, calculadora





Variables, cadenas de caracteres, preguntar.

Icon activity.jpg

Variables, cadenas de caracteres, preguntar.





Parámetros en los programas

Icon activity.jpg

Parámetros en los programas





Ficheros

Icon activity.jpg

Ficheros





Funciones

Icon activity.jpg

Funciones





Condicionales

Icon activity.jpg

Condicionales

 if <condición> :
     bloque
     bloque
 else:
     bloque
     bloque





Repeticiones

Icon activity.jpg

Repeticiones

 for elemento in secuencia:
     bloque
 for x in range(y):
     bloque
 while <condición> :
     bloque





Interfaces gráficas sencillas

Icon activity.jpg

Interfaces gráficas sencillas






Documentación de repaso




BeautifulSoup



Mechanize