File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/python Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 20
20
MY_CONSTANT = "Mi constante"
21
21
22
22
"""Las constante en Python, se colocan en mayusculas, este es un método por
23
- convención, de la misma manera es posible cambiarle el valor. A la final
24
- realmente no hay constantes en Python."""
23
+ convención, de la misma manera es posible cambiarle el valor. A la final
24
+ realmente no hay constantes en Python."""
25
25
26
26
# DATOS PRIMITIVOS
27
27
35
35
# Este es un dato primitivo boleano
36
36
37
37
my_str = "Aprendiendo Python"
38
- my_other_string = 'Aprendiendo Python'
38
+ my_other_string = 'Aprendiendo Python con MoureDev '
39
39
# Este es un dato primitivo string o cadena de texto
40
40
41
41
# Imprimir mensaje por consola
You can’t perform that action at this time.
0 commit comments