Skip to content

Commit fece976

Browse files
authored
Merge pull request mouredev#7219 from Ingothik/patch-1
#00 - Python
2 parents 2f8b9b5 + ea2e1c6 commit fece976

File tree

1 file changed

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

1 file changed

+17
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Sitio web oficial de Python: https://www.python.org/
2+
3+
""" Sitio web oficial de Python:
4+
https://www.python.org/"""
5+
6+
''' Sitio web oficial:
7+
https://www.python.org/'''
8+
9+
10+
variable1 = "Bienvenido"
11+
12+
string = "Esto es una cadena"
13+
entero = 33
14+
flotante = 21.5
15+
booleano = True
16+
17+
print("¡Hola, Python!")

0 commit comments

Comments
 (0)