We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 986f77a + 191f5b1 commit 3cf1fbdCopy full SHA for 3cf1fbd
Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/lagoausente.py
@@ -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