Skip to content

Commit

Permalink
Merge pull request mouredev#7578 from aztharoth87/patch-3
Browse files Browse the repository at this point in the history
Create aztharoth87
  • Loading branch information
Roswell468 authored Jan 6, 2025
2 parents 0e142b7 + 4124a6b commit c802c9a
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 c802c9a

Please sign in to comment.