Skip to content

Commit ab02a34

Browse files
authored
Merge pull request mouredev#3651 from NeosV/main
#00 - Python
2 parents a0e54ff + f9e42c4 commit ab02a34

File tree

1 file changed

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

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)