在循环中动态分配变量

时间:2013-09-24 21:51:08

标签: python variables loops python-3.x

我需要为从A到Z的变量分配一个数字列表。但是,这个列表的长度会有所不同。是否有方法在循环中执行此操作? 到目前为止我有:

file=open('inputfile.txt')
data=file.readlines()

vardict={1: 'A', 2: 'B', 3: 'C', 4: 'D', 5: 'E', 6: 'F',
         7: 'G', 8: 'H', 9: 'I', 10: 'J', 11: 'K', 12: 'L',
         13: 'M', 14: 'N', 15: 'O', 16: 'P', 17: 'Q',
         18: 'R', 19: 'S', 20: 'T', 21: 'U', 22: 'V',
         23: 'W', 24: 'X', 25: 'Y', 26: 'Z'}

for line in data:
    if line[0:1]=='V': #v is a marker that this line needs to assign variables. 
        num=1
        var=line.split() 
        var=var[1:] #remove the tag 
        for entry in var:
            x=vardict[num] #this will assign x to the correct variable
                           #need some lines here to create a variable from whatever is in x 
            num+=1 
例如,

var = ['16','17','13','11','5','3']需要分配给变量A到F. 我将需要在以后的计算中大量使用这些变量,所以没什么太笨重的。

编辑:我将需要在计算中使用变量,直到带有标记V的另一行出现,当我需要将以下列表分配给变量A-Z时,并在以后的计算中使用新变量。

输入将采用以下形式:

V 1 -2 3 4 5 7 8 9 10
I (A+B)-C*F
I C*F-(A+B)    
R -+AB*CF
V 16 17 13 11 5 3 
O AB+C-D*E/F^

其他行是要进行的各种计算。

3 个答案:

答案 0 :(得分:0)

可以通过写入全局字典来指定字符串中命名的变量:

varname="A"
globals()[varname] = 16   # equivalent to A = 16

您可以浏览列表var,生成字符串“A”,“B”......并依次分配给每个字符串。

但是这种诡计可能表明你做错了:它不那么明确,如果你的信件用完了又会发生什么?

(参考) http://www.diveintopython.net/html_processing/locals_and_globals.html

答案 1 :(得分:0)

如果您创建一个保存变量的对象,则可以使用setattr函数...例如:

class variables():
    pass

vars = variables()

for line in data:
    if line[0:1]=='V': #v is a marker that this line needs to assign variables. 
        num=1
        v=line.split() 
        v=v[1:] #remove the tag 
        for entry in var:
            setattr(vars, vardict[num], entry) #creates vars.A=16 for example
            num+=1 

答案 2 :(得分:0)

import string
my_input = "V 1 -2 3 4 5 7 8 9 10"
doctored_input = map(int,my_input.split()[1:])

print dict(zip(string.ascii_uppercase,doctored_input))
#result : {'A': 1, 'C': 3, 'B': -2, 'E': 5, 'D': 4, 'G': 8, 'F': 7, 'I': 10, 'H': 9}