diff --git a/Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/Tallahashee.py b/Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/Tallahashee.py new file mode 100644 index 0000000000..2df26ff5cf --- /dev/null +++ b/Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/Tallahashee.py @@ -0,0 +1,27 @@ +# https://python.org + +# Esto es un comentario en una linea + +""" +Esto es un +comentario en +varias lineas +""" +my_variable = "Mi variable" +my_variable = "Nuevo valor de mi variable" + +MY_CONSTANT = "Mi constante" # por conveccion + +my_int = 1 +my_float = 2.5 +my_bool = True +my_bool = False +my_string = "Mi cadena de texto" +my_other_string" = 'Mi otra cadena de texto' + +print("¡Hola, Python!") + +print(type(my_int)) +print(type(my_float)) +print(type(my_bool)) +print(type(my_string))