zoukankan      html  css  js  c++  java
  • eval函数使用技巧

    eval

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

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

      参数:

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

        globals:可选。必须是dictionary

        locals:可选。任意map对象

    eval( ) 可以把【列表】list,【元组】tuple,【字典】dict,【字符串】string 相互转化。

    1)字符串str转换成列表list

    执行结果:


    2)字符串str转换成字典dict

    执行结果:

    执行结果:



    3)字符串str转换成元组tuple

     执行结果:

  • 相关阅读:
    动态表格
    Palindrome Number
    String to Integer (atoi) ???
    Reverse Integer
    Two Sum
    Path Sum
    Minimum Depth of Binary Tree
    Plus One
    Maximum Depth of Binary Tree
    Symmetric Tree
  • 原文地址:https://www.cnblogs.com/OICOmay/p/8319463.html
Copyright © 2011-2022 走看看