python string to variable
摘要:
example:exec:执行字串语句>>> l=[12,3,4,4]>>> s = 'l.append(10)'>>> exec(s)>>> s'l.append(10)'>>> l[12, 3, 4, 4, 10]>>>eval:让字串变成与之对应的变量名>>> str = 'good'>>> good = 'hello!world'>>> eval(str)' 阅读全文
posted @ 2012-11-05 17:10 漩涡鸣人 阅读(344) 评论(0) 推荐(0) 编辑