Python 执行字符串表达式(eval exec execfile)
273 views
0
Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> x=1 >>> print eval("x+1") 2 >>> exec "print 'http://blog.leniy.org/python-eval-exec-execfile.html'" http://blog.leniy.org/python-eval-exec-execfile.html >>>
>>> input("请输入:") 请输入:1+2**3 9 >>>
>>> eval(raw_input("请输入:")) 请输入:1+2**3 9 >>>
版权所有: 本文系米扑博客原创、转载、摘录,或修订后发表,最后更新于 2014-08-10 00:21:58
侵权处理: 本个人博客,不盈利,若侵犯了您的作品权,请联系博主删除,莫恶意,索钱财,感谢!