Curso-lenguaje-python/30-days-of-python/17_Manejo_de_excepciones/README.md
Manuel Vergara 9df7a5bfbe Add exercises 17
Signed-off-by: Manuel Vergara <manuel@vergaracarmona.es>
2023-09-29 00:23:10 +02:00

16 lines
605 B
Markdown

# Manejo de excepciones
Documento original en inglés: [Exception handling](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/17_Day_Exception_handling/17_exception_handling.md)
## Ejercicios
```
names = ['Finland', 'Sweden', 'Norway', 'Denmark', 'Iceland', 'Estonia', 'Russia'].
```
1. Desempaca los cinco primeros países y almacénalos en una variable llamada 'nordic_countries', almacena 'Estonia' y 'Russia' en variables 'es' y 'ru' respectivamente.
[Solución](01_exceptions.py)
[<< Day 16](../16_Fecha_y_hora_en_Python/README.md) | [Day 18 >>](../18_Expresiones_regulares/README.md)