Skip to content

Commit de0324b

Browse files
author
VSXR
committed
ej00 done
1 parent 3383612 commit de0324b

File tree

1 file changed

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

1 file changed

+18
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# www.python.org
2+
3+
# Comentario una linea
4+
5+
"""
6+
Comentario de
7+
varias lineas
8+
"""
9+
10+
variable = 1
11+
CONSTANTE = 100
12+
13+
a = "String"
14+
b = 1
15+
c = 1.55
16+
d = True
17+
18+
print("¡Hola, Python!")

0 commit comments

Comments
 (0)