Python is the validation method for compiling the run _python

Source: Internet
Author: User

Although Python is said to be an interpreted language, the Python source program is actually compiled before it can be run.

Like the Java language, Python source code is compiled with bytecode, which is run by a Python virtual machine.

In this connection, we can verify that:

Copy Code code as follows:

#!/usr/bin/python

Print "Position1"
1_syntax_error_identifier
Print "Position2"

Save it as program.py, and then run it in the shell window:
Copy Code code as follows:

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

As you can see from here, if Python is purely interpreted to run, then it should output position1.
If the compilation is running, you should first discover the syntax errors in the source code, which is what this example shows.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.