python
python
Multiparadigma
Sistema de tipado dinámico
Multiplataforma
PEP
Python Enhancent Proposal
PEP 8
Guía de estilo para programar en python
PEP 20
Zen python
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
Ventajas
Simplificado y rápido
Elegante y flexible
Programación sana y productiva
Ordenado y limpio
Portable
Baterías incluidas
Tipos de datos básicos
Numeros
- Enteros
- Coma Flotante
- Numeros complejos
numero = 1
print(numero)
1
numero = 1.1
print(numero)
1.1
numero = 1j
print(numero)
1j
i = 1 + 1
i = 1 * 1
i = 1 - 1
i = 1 / 1
i = 1 // 1
i = 1 ** 1
i = 1 % 1
Cadenas
''
""
""""""
Listas
- La lista es un tipo de colección ordenada
- [22, True, “una lista”, [1, 2]]
- [0 , 1 , 2 ,3]
- Las listas pueden contener cualquier tipo de dato
- [22, True, “una lista”, [1, 2]]
- Se pueden acceder a cualquier valor escribiendo el nombre de la variable y el indice
- l = [11, False]
- l[0] # 11
- Comienzan por 0
- Los indices pueden ser negativos
Tuplas
- Son inmutables (no pueden ser alteradas despues de creadas)
- Ademas de anterior su comportamiento es idéntico a de las listas
Diccionario
- Son colecciones que relacionan una clave y un valor
- {“Love Actually “: “Richard Curtis”,“Kill Bill”: “Tarantino”,}
- Para acceder a sus valores se usan la clave
- d[“Love Actually “] # devuelve “Richard Curtis”
- if ... else
- if num == 1:
- print "whtever"
- else:
- print "not"
- if num == 1:
- if ... elif ... elif ... else
- if num == 1:
- print "whtever"
- elif num ==2:
- print "whtever2"
- else:
- if num == 1:
Sentencias if
Bucles
- While
- edad = 0
- while edad < 18:
- edad = edad + 1
- print “Felicidades, tienes “ + str(edad)
- For .. in
- secuencia = [“uno”, “dos”, “tres”]
- for elemento in secuencia:
- print elemento
Funciones
def mi_funcion(param1, param2):
arg
def mi_funcion(*arg):
kwarg
def mi_funcion(**kwarg):
Objectos
- Un objeto es una entidad que agrupa un estado y una funcionalidad relacionadas.
- Los objectos en python se crean:
- a = Clase(variables.....)
deck
By Leonardo Fabio Orozco Padilla
deck
- 744