当前位置:主页 > 软件编程 > Python代码 >
时间:2020-11-01 14:34:17 | 栏目:Python代码 | 点击:次
code:
for i in range(100): cmd = "t%s = 1" % i exec cmd eval("t%s" % i) print t10
输出 1 , 表示我们创建了 t0 - t99 这样的变量