[Python]PyCharm在创建py文件时自动添加头部注释
Posted 雾霾王者
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Python]PyCharm在创建py文件时自动添加头部注释相关的知识,希望对你有一定的参考价值。
在Pycharm主界面找到
File ----->> Setting ----->> Editor ----->> File and Code Templates ----->> Python Script
如图界面
在右部编辑区域输入
1 #!/usr/bin/env python 2 # -*- coding: utf-8 -*- 3 # @File : ${NAME}.py 4 # @Author: auther\'s name 5 # @Date : ${DATE} 6 # @Desc : 7 # @Contact : xxxxxxxx@gmail.com
可仿照格式自行添加所需注释内容
以上是关于[Python]PyCharm在创建py文件时自动添加头部注释的主要内容,如果未能解决你的问题,请参考以下文章
Python模块包(pycharm右键创建文件夹和python package的区别)中__init__.py文件的作用