Skip to content

Commit 12e5178

Browse files
author
Alexander Carreno
committed
#00 - python
1 parent dc4f5f9 commit 12e5178

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# https://www.python.org
2+
3+
# Comentario en una linea
4+
5+
"""
6+
Comentario de bloque
7+
o en varias lineas
8+
"""
9+
10+
my_variable = "Variable"
11+
12+
MY_CONSTANT = "Constant" # "Constant"
13+
14+
15+
my_str = "Alex"
16+
my_int = 8
17+
my_float = 2.5
18+
my_bool = True
19+
20+
print(type(my_str))
21+
print(type(my_int))
22+
print(type(my_float))
23+
print(type(my_bool))
24+
25+
print("Hello, Python!")

0 commit comments

Comments
 (0)