您的位置:首页 > 编程语言 > Python开发

pycharm templates 设置

2015-09-03 12:30 609 查看
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、配置实例截图;


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python templates pycharm