python重要函数eval
Posted 小小程序员ol
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python重要函数eval相关的知识,希望对你有一定的参考价值。
1.参数会作为一个 Python 表达式(从技术上说是一个条件列表)被解析并求值
>>> x = 1
>>> eval('x+1')
2
2.去除字符串两边的引号
>>> a='"srting"'
>>> print(a)
"srting"
>>> b=eval(a)
>>> print(b)
srting
也可以用
>>> a.strip('"')
'srting'
3.字符串转字典
>>> a= "{'name':'linux','age':18}"
>>> type(a)
<type 'str'>
>>> b=eval(a)
>>> b
{'age': 18, 'name': 'linux'}
>>> type(b)
<type 'dict'>
4.传递全局变量
>>> a= "{'name':'linux','age':age}"
>>> b=eval(a,{"age":1822})
>>> b
{'age': 1822, 'name': 'linux'}
>>> type(b)
<type 'dict'>
5.传递本地变量
>>> a= "{'name':'linux','age':age}"
>>> age=18
>>> b=eval(a,{"age":1822},locals())
>>> b
{'age': 18, 'name': 'linux'}
以上是关于python重要函数eval的主要内容,如果未能解决你的问题,请参考以下文章