Last active
July 12, 2019 23:56
-
-
Save erickdsama/9854394577ed767719874eacbfb35c1a to your computer and use it in GitHub Desktop.
Tipos de variables en python y como asignar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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