diff --git a/17_Day_Exception_handling/17_exception_handling.md b/17_Day_Exception_handling/17_exception_handling.md index c5d082388..8e049e9e2 100644 --- a/17_Day_Exception_handling/17_exception_handling.md +++ b/17_Day_Exception_handling/17_exception_handling.md @@ -270,7 +270,7 @@ for index, item in enumerate([20, 30, 40]): for index, i in enumerate(countries): print('hi') if i == 'Finland': - print('The country {i} has been found at index {index}') + print(f'The country {i} has been found at index {index}') ``` ```sh @@ -301,6 +301,7 @@ print(fruits_and_veges) 1. names = ['Finland', 'Sweden', 'Norway','Denmark','Iceland', 'Estonia','Russia']. Unpack the first five countries and store them in a variable nordic_countries, store Estonia and Russia in es, and ru respectively. + 🎉 CONGRATULATIONS ! 🎉 [<< Day 16](../16_Day_Python_date_time/16_python_datetime.md) | [Day 18 >>](../18_Day_Regular_expressions/18_regular_expressions.md)