Skip to content

Commit 6719fb2

Browse files
authored
Merge pull request mouredev#3094 from dokeys28/00
#00 Python
2 parents c439015 + 941956a commit 6719fb2

File tree

1 file changed

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

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#https://www.python.org
2+
3+
'''
4+
Link oficial de Python
5+
http://www.python.org
6+
'''
7+
8+
mi_variable = 'Manzana'
9+
mi_variable = 'Pera'
10+
MICONSTANTE = 3.14
11+
12+
mi_string : str = 'soy un string'
13+
mi_int : int = 1
14+
mi_float : float = 0.35
15+
mi_booleano : bool = True
16+
mi_lista : list = []
17+
mi_tupla : tuple = (1, 2, 3, 4)
18+
mi_set : set = (['Negro','Rojo','Azul'])
19+
mi_diccionario : dict = {'a' : 1, 'b': 2, 'c': 3, 'd': 4}
20+
print('¡Hola, Python!')

0 commit comments

Comments
 (0)