Skip to content

Commit 40a48aa

Browse files
authored
Merge pull request #6436 from Neyan-52/patch-1
Create Neyan-52.py
2 parents 1511935 + f0e1256 commit 40a48aa

File tree

1 file changed

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

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# https://python.org
2+
3+
# Comentario de una linea
4+
5+
"""
6+
Comentario
7+
de varias
8+
lineas
9+
"""
10+
'''
11+
Comentario
12+
de varias
13+
lineas
14+
'''
15+
my_variable = "variable"
16+
my_variable = "nueva variable"
17+
18+
MY_CONSTANT = "constante"
19+
20+
my_int = 1
21+
my_float = 1.5
22+
my_bool = True
23+
my-bool = False
24+
my_string = "Cadena de texto"
25+
my_other_string = "otra cadena de texto"
26+
27+
print("!Hola, Python!")

0 commit comments

Comments
 (0)