我正在尝试从带有字符串插值的字典中获取一个值。
字典有一些数字和数字列表:
d = { "year" : 2010, \
"scenario" : 2, \
"region" : 5, \
"break_points" : [1,2,3,4,5] }
是否可以在字符串插值中引用列表,或者我是否需要为每个列表识别唯一键?
这是我尝试过的:
str = "Year = %(year)d, \
Scenario = %(scenario)d, \
Region = %(region)d, \
Break One = %(break_points.0)d..." % d
我也试过了%(break_points[0])d
,而且%(break_points{'0'})d
这是可能的,还是我需要给他们键并将它们保存为字典中的整数?