我需要创建一个词典列表:
box1 = {'x' : 10, 'y' : 10, 'direction' : 'right'}
box2 = {'x' : 20, 'y' : 10, 'direction' : 'right'}
box3 = {'x' : 30, 'y' : 10, 'direction' : 'right'}
box4 = {'x' : 40, 'y' : 10, 'direction' : 'right'}
box5 = {'x' : 50, 'y' : 10, 'direction' : 'right'}
box6 = {'x' : 60, 'y' : 10, 'direction' : 'right'}
box7 = {'x' : 70, 'y' : 10, 'direction' : 'right'}
box8 = {'x' : 80, 'y' : 10, 'direction' : 'right'}
box9 = {'x' : 90, 'y' : 10, 'direction' : 'right'}
我成功地使用循环
创建了一个第一个dictionaty box1for i in range(9):
new_n = 'box' + str(i+1)
exec(new_n + " = {}")
我可以使用循环和exec
方法创建这样的列表吗?
如果没有,我该如何创建呢?
P.S。:我无法找到列表理解的概念,该列表理解用字典填充列表并为这些字典指定不同的名称。这就是为什么这个问题与本网站上的任何其他问题不同的原因。
答案 0 :(得分:1)
boxes = {"box%d"%i:{'x' : x, 'y' : 10, 'direction' : 'right'} for i,x in enumerate(range(10,91,10),1)}
print boxes["box1"]
my_var = "box1"
print boxes[my_var]
可能是我会这样做的
一般来说,你应该避免使用eval / exec