forked from HectorRiquelme/lenguaje-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
02-variables.py
38 lines (28 loc) · 903 Bytes
/
02-variables.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
'''
tema: 02 - variables
A - cómo funcionan las variables en python?
ejercicio:
01 - uso de variables
'''
'''
::::::::::::::::::::::::::::::::::::::::::::::::::::::
A - cómo funcionan las variables en python?
::::::::::::::::::::::::::::::::::::::::::::::::::::::
Las variables en python son dinámicas, por lo tanto no es necesario
tiparlas (indicar el tipo de variable) directamente, por ejemplo:
- es posible crear la una variable "variable_uno" y asignarle un
valor numérico o de texto
variable_uno = 1
variable_uno = "uno"
'''
#--------------------------------------------------------------
'''
:::::::::::::::::::::::::::::::::::
01 - uso de variables
:::::::::::::::::::::::::::::::::::
'''
nombre = "lalo landa"
telefono= 987654321
email = '[email protected]'
print('\n')
print(f' nombre: {nombre}\n telefono: {telefono}\n email: {email}')