forked from mouredev/roadmap-retos-programacion
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request mouredev#7578 from aztharoth87/patch-3
Create aztharoth87
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/aztharoth87.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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!") |