标签:code 求值 contain highlight 计算 返回 order table pytho
eval函数将字符串当成有效Python表达式来求值,并返回计算结果
1
2
3
|
x = 1 eval ( ‘x+1‘ ) eval ( ‘x==1‘ ) |
与之对应的repr函数,它能够将Python的变量和表达式转换为字符串表示
1
2
|
repr (x = = 1 ) repr (x + 1 ) |
标签:code 求值 contain highlight 计算 返回 order table pytho
原文地址:http://www.cnblogs.com/nickup/p/6784565.html