Skip to content

Commit

Permalink
Merge pull request #3067 from sergiovelayos/main
Browse files Browse the repository at this point in the history
pull request reto 00
  • Loading branch information
Roswell468 authored Apr 23, 2024
2 parents 0736036 + bf96dcf commit 647dcdd
Showing 1 changed file with 70 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# https://www.python.org/



# Comentario en una línea
# Comentario 2
# Comentario 3



"""
Esto es un comentario
en varias líneas
"""



'''
Esto es un comentario
en varias líneas
'''



# Crear una variable

my_variable = 1 + 1



# crear una constante

# Python no tiene



# datos primitivos

# numeros enteros

var_entero = 4



# numeros decimales

var_decimal = 4.3
var_deci = 2.1



# boolean

var_booleano = True



# cadena de texto

var_cadena = "ola k ase"



print("Imprimir texto")

0 comments on commit 647dcdd

Please sign in to comment.