Skip to content

Commit 3f3477a

Browse files
author
TizoG
committed
# 00 - Python
1 parent ee8b8e4 commit 3f3477a

File tree

1 file changed

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

1 file changed

+21
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# https://python.org
2+
3+
# Comentario en una linea
4+
5+
'''
6+
Esto es un
7+
comentario en
8+
varias lineas
9+
'''
10+
11+
my_variable = "Esto es una variable"
12+
13+
MY_CONSTANTE = "Esto es una constante"
14+
15+
my_int = 1
16+
my_float = 1.1
17+
my_boolean = True
18+
my_boolean = False
19+
my_string = "Cadena de texto"
20+
21+
print("¡Hola, Python!")

0 commit comments

Comments
 (0)