We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d7d2bdd + 9f6615a commit 79f1b82Copy full SHA for 79f1b82
Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/haroldAlb.py
@@ -0,0 +1,19 @@
1
+# Web oficial del lenguaaje de programación elejido: https://python.org
2
+
3
+#Comentario de una línea
4
+"""
5
+Comentario de
6
+varias líneas en
7
+Python
8
9
10
+variable= 666
11
+MI_CONSTANTE= 3.1416
12
13
+entero= -68
14
+entero1: int = 33 #Estoy indicando que esta variable debe ser siempre de tipo entero y debe cambiar durante su ejecución a otro tipo de variable
15
+flotante= 0.333
16
+texto= "En una galaxia, muy, muy lejana..."
17
+booleano= True
18
19
+print("Hola, Python")
0 commit comments