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 a0e54ff + f9e42c4 commit ab02a34Copy full SHA for ab02a34
Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/NeosV.py
@@ -0,0 +1,23 @@
1
+#https://www.python.org
2
+
3
+#comentario de linea
4
5
+'comentario en lineas'
6
7
+"otra forma de comentar"
8
9
+variable = "una variable"
10
11
+CONSTANTE = "Constante ya que python no las maneja literalmente"
12
13
+print (type("Andres"))
14
+print (type(10))
15
+print (type(3.14))
16
+print (type(1+1j))
17
+print (type(True))
18
+print (type ([1,2,3,4]))
19
+print (type({'name':'andres', 'age':22, 'casado': False}))
20
+print (type((1,2)))
21
+print (type(zip([1,2],[3,4])))
22
23
+print ("Hola, Python!")
0 commit comments