Python解释器如何读取源文件

2024年07月16日 文件操作 Python51

Python解释器读取源文件说明

1、当Python解释器读取源文件时,它首先定义一些特殊的变量。

2、设置一些特殊的变量,如__name__,然后执行文件中找到的所有代码。

Python解释器使用代码为__name__变量值,即__name__变量值为__main__。

Python解释器读取源文件实例

# Suppose this is foo.py.
 
print("before import")
import math
 
print("before functionA")
def functionA():
    print("Function A")
 
print("before functionB")
def functionB():
    print("Function B {}".format(math.sqrt(100)))
 
print("before __name__ guard")
if __name__ == '__main__':
    functionA()
    functionB()
print("after __name__ guard")

以上就是Python解释器读取源文件的方法,希望对大家有所帮助。

本文链接:http://so.lmcjl.com/news/8555/

展开阅读全文