We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 53272c9 + b121ed2 commit 15f396cCopy full SHA for 15f396c
Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python/juanppdev.py
@@ -0,0 +1,33 @@
1
+# https://www.python.org/
2
+
3
+# Conetario en una sola linea
4
+"""
5
+Esto es un
6
+comentario en
7
+varias lineas
8
9
+'''
10
+Esto tambien es un
11
12
13
14
15
+my_variable = 'My String Variable'
16
+print(my_variable)
17
18
+# Variables
19
20
21
22
+my_int_variable = 5
23
+print(my_int_variable)
24
25
+my_int_to_str = str(my_int_variable)
26
+print(my_int_to_str)
27
+print(type(my_int_to_str))
28
29
+my_bool_variable = False
30
+print(my_bool_variable)
31
32
+lenguaje = "python"
33
+print(f"Hola {lenguaje}")
0 commit comments