Skip to content

Commit ccef077

Browse files
authored
Merge pull request #8959 from Ramirofordev/00
#00 - Python
2 parents 8b726ac + 85990c8 commit ccef077

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+
# Python: https://www.python.org/
2+
'''
3+
Esta es la forma de comentar en varias lineas
4+
'''
5+
6+
# Y esta es la forma de comentar en una sola linea
7+
8+
x = 5
9+
PI = 3.1416
10+
11+
# Int
12+
y = 6
13+
14+
# Float
15+
n = 1.5
16+
17+
# String
18+
nombre = "Nacho"
19+
20+
# Boolean
21+
estudiando = True
22+
23+
print("Hola, Python!")

0 commit comments

Comments
 (0)