Skip to content

Commit

Permalink
Create aztharoth87
Browse files Browse the repository at this point in the history
  • Loading branch information
aztharoth87 authored Jan 5, 2025
1 parent f71ed7f commit 46e494f
Showing 1 changed file with 31 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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!")

0 comments on commit 46e494f

Please sign in to comment.