Muestra las diferencias entre dos versiones de la página.
| Ambos lados, revisión anteriorRevisión previaPróxima revisión | Revisión previa | ||
| modelado:introduccion_python [2024/02/01 08:20] – thejuanvisu | modelado:introduccion_python [2024/02/01 08:39] (actual) – thejuanvisu | ||
|---|---|---|---|
| Línea 7: | Línea 7: | ||
| variable = " | variable = " | ||
| numero = 1 | numero = 1 | ||
| + | |||
| + | #Para saber el tipo de dato de una variable usamos type: | ||
| + | print(type(variable), | ||
| </ | </ | ||
| Línea 96: | Línea 99: | ||
| <code python> | <code python> | ||
| + | #Sin definir tipos de datos que recibe y devuelve: | ||
| def funcion(parametroA, | def funcion(parametroA, | ||
| a = " | a = " | ||
| print(" | print(" | ||
| return a | return a | ||
| + | | ||
| + | #Definiendo el tipo de datos que debe recibir y devolver: | ||
| + | def nombre(par_1: | ||
| + | print(type(par_1)) | ||
| + | return par_1, par_2 | ||
| </ | </ | ||
| Línea 106: | Línea 115: | ||
| def funcion(): | def funcion(): | ||
| return 1,2 | return 1,2 | ||
| + | </ | ||
| + | |||
| + | |||
| + | ===== Diccionarios en Python ===== | ||
| + | Se utilizan para almacenar datos. | ||
| + | <code python> | ||
| + | dicc = dict{ | ||
| + | " | ||
| + | " | ||
| + | } | ||
| + | |||
| + | print(dicc)# | ||
| + | |||
| + | #Para recorrer las claves del diccionario: | ||
| + | for key, value in dicc.items(): | ||
| + | print(f" | ||
| + | |||
| + | |||
| </ | </ | ||