在Pycharm中自动添加时间日期作者等信息的方法
程序员文章站
2022-06-12 18:18:26
1.按照下面路径以此打开
file→→settings→→editor→→file and code templates
右侧找到python scrip...
1.按照下面路径以此打开
file→→settings→→editor→→file and code templates
右侧找到python script,如下图
2.设置相关代码
如下
##!/usr/bin/python3 # -*- coding: utf-8 -*- # @time : ${date} ${time} # @author : 未来战士biubiu!! # @filename: ${name}.py # @software: ${product_name} # @blog :http://blog.csdn.net/u010105243/article/
设定的规则说明如下
(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中自动添加时间日期作者等信息的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: PHP定时自动生成静态HTML的实现代码