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

De WikiEducator
Saltar a: navegación, buscar
 
(10 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
 +
|Title=Introducción e instalación
 
}}
 
}}
  
Línea 9: Línea 12:
 
* Instalación y configuración del sistema
 
* Instalación y configuración del sistema
 
* Primeros pasos: uso del intérprete '''print''', comentarios, calculadora
 
* Primeros pasos: uso del intérprete '''print''', comentarios, calculadora
 +
|TOCdepth=2
 
|Title=Primeros pasos
 
|Title=Primeros pasos
 
}}
 
}}
  
 
{{Actividad|  
 
{{Actividad|  
* Ejercicios 4 a 10 de http://learnpythonthehardway.org
+
* Ejercicios 4 a 10 de http://learnpythonthehardway.org (variables, strings, print)
* Ejercicios 11 y 12 de http://learnpythonthehardway.org
+
* Ejercicios 11 y 12 de http://learnpythonthehardway.org (raw_input)
 +
|TOCdepth=2
 
|Title= Variables, cadenas de caracteres, preguntar.
 
|Title= Variables, cadenas de caracteres, preguntar.
 
}}
 
}}
 +
 +
{{Actividad|
 +
* Ejercicios 13 y 14 de http://learnpythonthehardway.org (sys.argv)
 +
|TOCdepth=2
 +
|Title=Parámetros en los programas
 +
}}
 +
 +
{{Actividad|
 +
* Ejercicios 15, 16, 17 de http://learnpythonthehardway.org (open, read, write, close)
 +
|TOCdepth=2
 +
|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
 +
}}
 +
 +
  
  
Línea 22: Línea 103:
 
<!--
 
<!--
 
{{Actividad|
 
{{Actividad|
*  
+
* Ejercicios 4 a 10 de http://learnpythonthehardway.org
 
*
 
*
 
|Title=
 
|Title=
 
}}
 
}}
 
-->
 
-->

Ú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