1. 程式人生 > >PyCharm的模板設置

PyCharm的模板設置

tps pre char ngs 技術分享 pyc text variable email

PyCharm的模板設置

在File—settings—File and Code Templates—Python script 腳本裏添加:

# -*- coding: utf-8 -*-
# __author: Tiger_Lee
# @file: ${NAME}.py
# @time: ${YEAR} ${MONTH} ${DAY}
# @email: [email protected]

保存,新建py文件,就可以實現自動化文件模板。

Predefined template variables
The following predefined variables can be used in file templates:
技術分享圖片

PyCharm的模板設置