Merge pull request #724 from abrar115/day17Typo

typo
This commit is contained in:
Asabeneh 2026-01-10 18:44:35 +02:00 committed by GitHub
commit 8bd806bbfd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)