Skip to content

Commit 16b9d2b

Browse files
authored
Merge pull request mouredev#5249 from FabianPA505/main
#00 - Python
2 parents c99617c + 9fb3f70 commit 16b9d2b

File tree

1 file changed

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

1 file changed

+18
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#Python.org
2+
3+
#this is a comment in one line
4+
'''
5+
this is a comment in three lines
6+
First comment
7+
Secund comment
8+
'''
9+
10+
my_variable_constant="CONSTANT"
11+
12+
my_string="string"
13+
my_int=5
14+
my_boolean=True
15+
my_boolean_false=False
16+
my_float=4-0
17+
18+
print("!Hola Python¡")

0 commit comments

Comments
 (0)