在循环中动态生成变量

while (month_lag >= '201601'):
   locals()["lc_"+month_lag] = get_month_lc(-i)
   month_lag = utility.datetime_month_lag(-i)[3]
   i=i+1

   print('The iter_lc is:', month_lag)


通过locals()["lc_"+month_lag],在循环中就动态生成变量 

你可能感兴趣的:(python)