Skip to content

Commit

Permalink
Ejercicio 00
Browse files Browse the repository at this point in the history
  • Loading branch information
OscarHub90 committed May 3, 2024
1 parent 0e5c149 commit 75def88
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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!")





Empty file.
Empty file.

0 comments on commit 75def88

Please sign in to comment.