发布于 2015-11-09 15:01:26 | 1141 次阅读 | 评论: 0 | 来源: PHPERZ
PyCharm Python开发IDE
PyCharm是一种Python IDE,带有一整套可以帮助用户在使用Python语言开发时提高其效率的工具,比如调试、语法高亮、Project管理、代码跳转、智能提示、自动完成、单元测试、版本控制。此外,该IDE提供了一些高级功能,以用于支持Django框架下的专业Web开发。
1、File-Settings-Editor-File Code Templates 配置Python Script模板文件;
2、关于Templates一些参数变量详解;
${PROJECT_NAME}
- the name of the current project.
${NAME}
- the name of the new file which you specify in the New File dialog box during the file creation.
${USER}
- the login name of the current user.
${DATE}
- the current system date.
${TIME}
- the current system time.
${YEAR}
- the current year.
${MONTH}
- the current month.
${DAY}
- the current
day of the month.
${HOUR}
- the current hour.
${MINUTE}
- the current minute.
${PRODUCT_NAME}
- the name of the IDE in which the file will be created.
${MONTH_NAME_SHORT}
- the first 3 letters of the month name. Example: Jan, Feb, etc.
${MONTH_NAME_FULL}
- full name of a month. Example: January, February, etc.
3、配置实例截图;