zoukankan      html  css  js  c++  java
  • Python是编译运行的

          虽然Python被说成是一种解释型语言,但是实际上,Python源程序要先经过编译,然后才能运行。

           与Java语言类似,Python源程序编译之后得到的是字节码,交由Python虚拟机来运行。

           关于这一点,我们可以这样来验证:

    #!/usr/bin/python
    
    print "position1"
    1_syntax_error_identifier
    print "position2"
    

              将它保存为program.py,然后在shell窗口中运行它:

    root@dell:~$ ./program.py
      File "./program.py", line 4
        1_syntax_error_identifier
                                ^
    SyntaxError: invalid syntax
    root@dell:~$ 

              从这里可以看出,如果Python是纯粹解释运行的话,那么它应该输出position1。

              如果是编译运行的话,首先应该发现源代码中的语法错误,这正是本例展示的情况。

  • 相关阅读:
    登录认证
    json
    关于优化
    网站资源
    设计模式
    Python
    查兰IP
    Linux命令
    centos7.0KVM虚拟化
    Shell数组
  • 原文地址:https://www.cnblogs.com/frydsh/p/3249142.html
Copyright © 2011-2022 走看看