From 75def880381130f1590046ec8d0857e5b084f416 Mon Sep 17 00:00:00 2001 From: Oscar Clavijo Date: Thu, 2 May 2024 22:55:48 -0500 Subject: [PATCH] Ejercicio 00 --- .../python/oscarhub90.py | 39 +++++++++++++++++++ .../python/oscarhub90.py | 0 .../python/oscarhub90.py | 0 3 files changed, 39 insertions(+) create mode 100644 Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/oscarhub90.py create mode 100644 Roadmap/01 - OPERADORES Y ESTRUCTURAS DE CONTROL/python/oscarhub90.py create mode 100644 Roadmap/02 - FUNCIONES Y ALCANCE/python/oscarhub90.py diff --git a/Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/oscarhub90.py b/Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/oscarhub90.py new file mode 100644 index 0000000000..d600062c7b --- /dev/null +++ b/Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/oscarhub90.py @@ -0,0 +1,39 @@ + +# https://www.python.org/ + +""" +Este es un comentario +de varias líneas +""" + +''' +Este también funciona +lo importante es que hayan +3 comillas +''' + +# 3. Crea una variable (y una constante si el lenguaje lo soporta). + +my_name = "Oscar C" + +# Python no tiene declaración explícita de constantes, sin embargo, por convención se declaran en mayúscula las vaiables que no se deben editar. + +CONSTANT_PI = 3.1416 + +# 4. Crea variables representando todos los tipos de datos primitivos + +var_int = 33 +var_float = 3.14 +var_string = 'hello' +var_boolean = True +var_boolean = False + + +# 5. Imprime por terminal el texto: "¡Hola, [y el nombre de tu lenguaje]!" + +print ("¡Hola, Phyton!") + + + + + diff --git a/Roadmap/01 - OPERADORES Y ESTRUCTURAS DE CONTROL/python/oscarhub90.py b/Roadmap/01 - OPERADORES Y ESTRUCTURAS DE CONTROL/python/oscarhub90.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/Roadmap/02 - FUNCIONES Y ALCANCE/python/oscarhub90.py b/Roadmap/02 - FUNCIONES Y ALCANCE/python/oscarhub90.py new file mode 100644 index 0000000000..e69de29bb2