Skip to content

Instantly share code, notes, and snippets.

@erickdsama
Last active July 12, 2019 23:56
Show Gist options
  • Save erickdsama/9854394577ed767719874eacbfb35c1a to your computer and use it in GitHub Desktop.
Save erickdsama/9854394577ed767719874eacbfb35c1a to your computer and use it in GitHub Desktop.
Tipos de variables en python y como asignar
# variable de tipo texto
a = "texto"
# variable de tipo entero
b = 1
# variable de tipo doble
c = 1.0
# varibale de tipo boleano
d = True
# variable de tipo lista
e = []
# variable de tipo diccionario
f = dict()
g = {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment