30-Days-Of-Python
30-Days-Of-Python copied to clipboard
typo
enumerate example was missing the f in the print statement leading it not to actually show the output that the github page shows for index, i in enumerate(countries): print('hi') if i == 'Finland': print(f'The country {i} has been found at index {index}')