From 1158cf5c302d9dd92fe193714a224b3c142b386d Mon Sep 17 00:00:00 2001 From: abrar115 <118535975+abrar115@users.noreply.github.com> Date: Mon, 17 Nov 2025 15:02:32 +0300 Subject: [PATCH] typo --- 17_Day_Exception_handling/17_exception_handling.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)