1、eval函数的使用
eval
功能:将字符串str当成有效的表达式来求值并返回计算结果。
语法: eval(source[, globals[, locals]]) -> value
参数:
source:一个Python表达式或函数compile()返回的代码对象
globals:可选。必须是dictionary
locals:可选。任意map对象
2、展示
1、将str转化为list
代码:
a = "[[1,2], [3,4], [5,6], [7,8], [9,0]]"
print(type(a))
print(eval(a))
print(type(eval(a)))
结果:
<class 'str'>
[[1, 2], [3, 4], [5, 6], [7, 8], [9, 0]]
<class 'list'>
2、将str转化为dict
代码:
b = "{1: 'a', 2: 'b'}"
print(type(b))
print(eval(b))
print(type(eval(b)))
结果:
<class 'str'>
{1: 'a', 2: 'b'}
<class 'dict'>
3、将str转换成tuple
代码:
c = "([1,2], [3,4], [5,6], [7,8], (9,0))"
print(type(c))
print(eval(c))
print(type(eval(c)))
结果:
<class 'str'>
([1, 2], [3, 4], [5, 6], [7, 8], (9, 0))
<class 'tuple'>
3、总结
eval()函数就是实现list、dict、tuple、与str之间的转化