标签:tin created div template rip style 第一行代码 模块 ted
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Created by iFantastic on $DATE
if __name__ == ‘__main__‘:
pass
设置 File > Settings > File and Code Template > Python Script
使用模板时,$DATE 会自动替换为当前日期。
第一行代码,用于指定运行脚本时默认的 Python 解释器。
if __name__ == ‘__main__‘
我们简单的理解就是: 如果模块是被直接运行的,则代码块被运行,如果模块是被导入的,则代码块不被运行。
标签:tin created div template rip style 第一行代码 模块 ted
原文地址:http://www.cnblogs.com/flymeng/p/7473141.html