We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a0ea535 + cec2162 commit 1f4a3b1Copy full SHA for 1f4a3b1
Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/Billy-Ugalde.py
@@ -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