1、运行hello_world.py时发生的情况

  运行hello_world.py时,Python都做了些什么呢?实际上,即便是运行简单的程序,Python所做的工作也相当多:

#!/usr/bin/env python
# -*- coding:utf-8 -*-

print("Hello Python world!")
View Code

相关文章: