Python解释器如何读取源文件

1,154次阅读
没有评论

Python解释器如何读取源文件

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解释器读取源文件的方法,希望对大家有所帮助。

神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:wuyou2022-06-13发表,共计512字。
新手QQ群:570568346,欢迎进群讨论 Python51学习