Skip to content

Commit 9d7054c

Browse files
authored
Merge pull request #21 from ycanas/ycanas
Reto #00 - Python
2 parents fb0fde6 + 6f84b57 commit 9d7054c

File tree

1 file changed

+23
-0
lines changed
  • Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# https://www.python.org/
2+
3+
4+
# Hola, soy un comentario de una línea
5+
6+
7+
"""
8+
Hola, yo tambien soy un comentario...
9+
pero de varias lineas ;)
10+
"""
11+
12+
13+
my_var = 'Hola, soy una variable'
14+
MY_CONST = 'Hola, soy una constante'
15+
16+
17+
my_int = 1
18+
mi_float = 1.0
19+
mi_bool = True
20+
mi_str = 'Hola, soy un String'
21+
22+
23+
print('¡Hola, Python!')

0 commit comments

Comments
 (0)