1

この「for」ループ内でテーブルを生成しようとしています。テーブル名の文字列をテーブルの名前にできるようにするために必要なことに行き詰まっています。

tablenames = ['t_10', 't_20', 't_30', 't_40', 't_50', 't_60', 't_70', 't_80', 't_90', 't_100']
firstrow = ['10%', '20%', '30%', '40%', '50%', '60%', '70%', '80%', '90%', '100%']

for t, r, in zip(tablenames, firstrow):
    t = [[r, '']]    

これが私がやったことです-私は知っています、それはきれいではありません(必要な数のスペースを生成する方法があることは知っています...それは単に協力していませんでした...また、cond1およびcond0リストは奇妙です... .)

t_10 = [['10%', '', '', '', '', '', '', '', '', '','','','']]
t_20 = [['20%', '', '', '', '', '', '', '', '', '','','','']]
t_30 = [['30%', '', '', '', '', '', '', '', '', '','','','']]
t_40 = [['40%', '', '', '', '', '', '', '', '', '','','','']]
t_50 = [['50%', '', '', '', '', '', '', '', '', '','','','']]
t_60 = [['60%', '', '', '', '', '', '', '', '', '','','','']]
t_70 = [['70%', '', '', '', '', '', '', '', '', '','','','']]
t_80 = [['80%', '', '', '', '', '', '', '', '', '','','','']]
t_90 = [['90%', '', '', '', '', '', '', '', '', '','','','']]
t_100 = [['100%', '', '', '', '', '', '', '', '', '','','','']]


tnames = [t_10, t_20, t_30, t_40, t_50, t_60, t_70, t_80, t_90, t_100]

cond1 = [conditions_list[0], conditions_list[2], conditions_list[4], conditions_list[6], conditions_list[8]]
cond0 = [conditions_list[1], conditions_list[3], conditions_list[5], conditions_list[7], conditions_list[9]]

for t, c1, c0 in zip(tnames,cond1,cond0):
    c1_results = process_exhaust(c1,1)
    c0_results = process_exhaust(c0, 0)    
    t.append(c1_results[0])
    t.append(c1_results[1])
    t.append(c1_results[2])
    t.append(c0_results[0])
    t.append(c1_results[3])
    t.append(c0_results[1])
4

1 に答える 1

0

プログラムで変数名を作成しようとするのは、通常は悪い考えです。でそれを行うことができますexecが、より良いアプローチは辞書を使用することです。

D = {t: [r,] for t, r in zip(tablenames, firstrow)}

D["t_10"]これで、必要な出力を得ることができます。

于 2013-08-23T15:27:57.947 に答える