Python学习札记-eval函数

Posted 缥缈一叶舟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python学习札记-eval函数相关的知识,希望对你有一定的参考价值。

eval()函数

        eval()官方文档里面给出来的功能解释是:将字符串string对象转化为有效的表达式参与求值运算返回计算结果

       语法上:调用的是:eval(expression,globals=None, locals=None)返回的是计算结果

  功能:将字符串str当成有效的表达式来求值并返回计算结果。

  语法: eval(source[, globals[, locals]]) -> value

  参数:

    source:一个Python表达式或函数compile()返回的代码对象

    globals:可选。必须是dictionary

    locals:可选。任意map对象

  实例展示:

1 可以把list,tuple,dict和string相互转化。
 2 #################################################
 3 字符串转换成列表
 4 >>>a = "[[1,2], [3,4], [5,6], [7,8], [9,0]]"
 5 >>>type(a)
 6 <type \'str\'>
 7 >>> b = eval(a)
 8 >>> print b
 9 [[1, 2], [3, 4], [5, 6], [7, 8], [9, 0]]
10 >>> type(b)
11 <type \'list\'>
12 #################################################
13 字符串转换成字典
14 >>> a = "{1: \'a\', 2: \'b\'}"
15 >>> type(a)
16 <type \'str\'>
17 >>> b = eval(a)
18 >>> print b
19 {1: \'a\', 2: \'b\'}
20 >>> type(b)
21 <type \'dict\'>
22 #################################################
23 字符串转换成元组
24 >>> a = "([1,2], [3,4], [5,6], [7,8], (9,0))"
25 >>> type(a)
26 <type \'str\'>
27 >>> b = eval(a)
28 >>> print b
29 ([1, 2], [3, 4], [5, 6], [7, 8], (9, 0))
30 >>> type(b)
31 <type \'tuple\'>

参考:

    http://www.cnblogs.com/dadadechengzi/p/6149930.html

以上是关于Python学习札记-eval函数的主要内容,如果未能解决你的问题,请参考以下文章

Gai笔记Swift Playground学习札记:01.02.05 函数:寻宝

python & pandas学习札记

Python eval 与 exec 函数

Python学习笔记011——内置函数eval()

Python eval 函数 -Python零基础入门教程

python学习日记:day15:------内置函数