Słownik dostępu w ciągu F
# Here the quotes in the dictionary lookup are the same as the ones from
# the string start and end, so instead we need to switch some around
print(f'{dictionary['key']}')
# Either of these work instead:
print(f"{dictionary['key']}")
print(f'{dictionary["key"]}')
Tired Turtler