How can i do this format with python 3.6 F-String ?
person = {'name': 'Jenne', 'age': 23}
print('My name {0[name]} and my age {1[age]}'.format(person, person))
print('My name {0} and my age {1}'.format(person['name'], person['age']))
Well, a quote for the dictionary key is needed.
f'My name {person["name"]} and my age {person["age"]}'