#文件名爲test_file.py print("哈哈") if __name__ == '__main__': print("嘎嘎")
輸出結果: 哈哈 嘎嘎 把test_file.py做爲模塊導到其它目錄 #文件名爲my_file.py import test 輸出結果:哈哈