Skip to content

Commit 9aaacdf

Browse files
authored
Merge pull request mouredev#7218 from franmux01/main
#00 - Python
2 parents 9d19762 + a8eeef3 commit 9aaacdf

File tree

1 file changed

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

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# https://python.org/
2+
3+
# Comentario en una linea
4+
5+
"""
6+
Esto tambien
7+
es un comentario
8+
en varias lineas
9+
"""
10+
11+
'''
12+
Probando comillas simples
13+
en varias lineas
14+
'''
15+
16+
miVariable = "Mi variable"
17+
miVariable = "Nuevo valor de mi variable"
18+
19+
MY_CONSTANT = "Mi constante" #Por convencion
20+
21+
mi_int = 5
22+
mi_float = 9.5
23+
mi_bool = True
24+
mi_str = "Hola gente"
25+
26+
print("Hola, Python!")
27+
28+

0 commit comments

Comments
 (0)