Skip to content

Commit 3cf1fbd

Browse files
authored
Merge pull request #7925 from lagoausente/main
#00-Python
2 parents 986f77a + 191f5b1 commit 3cf1fbd

File tree

1 file changed

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

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# https://www.python.org/
2+
# Hola Moure, gracias por tanto contenido
3+
4+
"""
5+
Y por hacerlo
6+
accesible desde cero
7+
"""
8+
'''
9+
Empezamos con ilusión,
10+
a ver si la mantenemos
11+
'''
12+
13+
my_counter = 1
14+
my_counter = 5
15+
16+
MY_CONSTANT = "mi constante" # convención
17+
18+
integrado = 20
19+
flotante = 20.6
20+
boleano = True
21+
Boleano = False
22+
Cadena_texto = "entre comillas"
23+
Cadena_texto = 'comillas simples'
24+
25+
print ("Hola, Python!!")
26+
27+
print (type(integrado))
28+
print (type(flotante))
29+
print (type(boleano))
30+
31+
32+

0 commit comments

Comments
 (0)