Skip to content

Commit 291b090

Browse files
authored
Merge pull request mouredev#7059 from Ale-Cervi/AleCervi
#00 - python
2 parents 73da963 + 657901b commit 291b090

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+
# Esto es un comentario en una sola linea
4+
5+
"""
6+
Esto es un
7+
comentario
8+
con salto
9+
de lineas
10+
"""
11+
#* Variables
12+
13+
my_str_value = "string"
14+
my_int_value = 1
15+
my_float_value = 1.5
16+
my_bool_value = True
17+
my_first_print = "¡Hola, Python!"
18+
19+
#* Constante
20+
21+
MY_CONSTANT = "18/11/2024"
22+
23+
print(my_first_print)

0 commit comments

Comments
 (0)