python—内置函数-字符串,eval,isinstance

Posted 夜猫心理委员

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python—内置函数-字符串,eval,isinstance相关的知识,希望对你有一定的参考价值。

eval()

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

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

  参数:

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

    globals:可选。必须是dictionary

    locals:可选。任意map对象

  实例展示:

可以把list,tuple,dict和string相互转化。
 #################################################
字符串转换成列表
>>>a = "[[1,2], [3,4], [5,6], [7,8], [9,0]]"
>>>type(a)
<type ‘str‘>
>>> b = eval(a)
>>> print b
[[1, 2], [3, 4], [5, 6], [7, 8], [9, 0]]
 >>> type(b)
<type ‘list‘>
 #################################################
字符串转换成字典
>>> a = "{1: ‘a‘, 2: ‘b‘}"
>>> type(a)
<type ‘str‘>
 >>> b = eval(a)
 >>> print b
{1: ‘a‘, 2: ‘b‘}
>>> type(b)
<type ‘dict‘>
 #################################################
字符串转换成元组
>>> a = "([1,2], [3,4], [5,6], [7,8], (9,0))"
>>> type(a)
<type ‘str‘>
>>> b = eval(a)
>>> print b
([1, 2], [3, 4], [5, 6], [7, 8], (9, 0))
>>> type(b)
 <type ‘tuple‘>



isinstance()
def isAString(obj):
    return isinstance(obj, str)

if isAString(1):
    print(是字符串)

 


以上是关于python—内置函数-字符串,eval,isinstance的主要内容,如果未能解决你的问题,请参考以下文章

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

python 内置函数input/eval(22)

python--内置函数, 匿名函数

python内置函数 eval()exec()以及complie()函数

Python之内置函数

PYDay6- 内置函数验证码文件操作