From 46e494f3ba4fd13aa11f537578daee9dc03e516e Mon Sep 17 00:00:00 2001 From: aztharoth87 <121623701+aztharoth87@users.noreply.github.com> Date: Sun, 5 Jan 2025 10:22:26 -0500 Subject: [PATCH 1/2] Create aztharoth87 --- .../python/aztharoth87 | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/aztharoth87 diff --git a/Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/aztharoth87 b/Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/aztharoth87 new file mode 100644 index 0000000000..2994c231ab --- /dev/null +++ b/Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/aztharoth87 @@ -0,0 +1,31 @@ +# HTTP://PYTHON.ORG + +# COMENTARIO EN UNA LINEA + +""" +Aqui se puede ingresar +comentarios en varias +lineas +""" + +''' +Aqui tambien se puede ingresar +comentarios en varia +lineas +''' + +mi_variable = "Mi variable" +mi_variable = "Otro valor de mi variable" + +MI_CONSTANTE = "Mi constante" # por convención + +mi_int = 1 +mi_float = 1.5 +mi_bool = True +mi_bool = False +mi_string = "Mi cadena de texto" +mi_otra_str = "Mi otra cadena de texto" + + + +print ("¡Hola, Python!") From 4124a6bcc973602d1eface2ee5924bac626b258b Mon Sep 17 00:00:00 2001 From: Bruce <88008233+Roswell468@users.noreply.github.com> Date: Mon, 6 Jan 2025 19:03:26 -0300 Subject: [PATCH 2/2] Rename aztharoth87 to aztharoth87.py --- .../python/{aztharoth87 => aztharoth87.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/{aztharoth87 => aztharoth87.py} (100%) diff --git a/Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/aztharoth87 b/Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/aztharoth87.py similarity index 100% rename from Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/aztharoth87 rename to Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/aztharoth87.py