1.按照下面路径以此打开
1
|
file →→settings→→editor→→ file and code templates |
右侧找到python script,如下图
2.设置相关代码
如下
1
2
3
4
5
6
7
|
##!/usr/bin/python3 # -*- coding: utf-8 -*- # @time : ${date} ${time} # @author : 未来战士biubiu!! # @filename: ${name}.py # @software: ${product_name} # @blog :http://blog.csdn.net/u010105243/article/ |
设定的规则说明如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
(a)shebang行 #!/usr/bin/python3 (b)预定义的变量要扩展为格式为$ {<variable_name>}的相应值。 可用的预定义文件模板变量为: $ {project_name} - 当前项目的名称。 $ {name} - 在文件创建过程中在“新建文件”对话框中指定的新文件的名称。 $ {user} - 当前用户的登录名。 $ {date} - 当前的系统日期。 $ {time} - 当前系统时间。 $ {year} - 今年。 $ {month} - 当月。 $ {day} - 当月的当天。 $ {hour} - 目前的小时。 $ {minute} - 当前分钟。 $ {product_name} - 将在其中创建文件的ide的名称。 $ {month_name_short} - 月份名称的前 3 个字母。 示例: 1 月, 2 月等 $ {month_name_full} - 一个月的全名。 示例: 1 月, 2 月等 |
以上这篇在pycharm中自动添加时间日期作者等信息的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/u010105243/article/details/76154251