首页 > 代码库 > eval
eval
def eval(*args, **kwargs): # real signature unknown """ Evaluate the given source in the context of globals and locals. The source may be a string representing a Python expression or a code object as returned by compile(). The globals must be a dictionary and locals can be any mapping, defaulting to the current globals and locals. If only globals is given, locals defaults to it. """
用法一:将字符串中的数学表达式当成有效的表达式来求值并返回计算结果。
用法二:将字符串中的数据类型提取出来并返回此数据类型的数据 如将 ‘‘[1, 2, 2]‘‘转换成[1, 2, 3]
print(eval(‘1+2+3‘))print(type(eval(‘[1, 2, 3]‘)))# 结果 6# 结果 <class ‘list‘>
eval
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。