1# Dynamically naming Dictionary key, value item
2dictionaryName['static_string_' + stringVariable] = otherVariable
3
4# Example
5dictOne = {}
6strAnimal = 'dogOne'
7intAge = 7
8
9dictOne['age_of_' + strAnimal] = intAge
10# Result
11{'age_of_dogOne': 7}
12