Skip to content

Commit 1f4a3b1

Browse files
authored
Merge pull request mouredev#7596 from Billy-Ugalde/billy
#00-python
2 parents a0ea535 + cec2162 commit 1f4a3b1

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+
# Hola estoy aprendiendo python en 2025, pura vida desde COSTA RICA tierra de paz.....
2+
3+
4+
"""
5+
Esta es el link a la documentacion oficial de python:
6+
https://www.python.org/about/
7+
8+
Nota: python no permite variables constantes.
9+
10+
"""
11+
palabra_str = "e4frffr"
12+
num_int = 300
13+
num2_float = 2.5
14+
num3_complex = 1 +2j
15+
bool = False
16+
17+
print(f'Es de tipo: + {type(num3_complex)}')
18+
print('Hola python')

0 commit comments

Comments
 (0)