python如何返回Windows下当前正在处理的文件名

发布于 2024-11-24 03:09:28 字数 548 浏览 1 评论 0原文

我是Python新手,只想做一个简单的改变。我们正在 Windows 7 下通过 mako 生成一个模板文件,我想将输出文件开头的注释从:

/////////////////////////////////////////////////////////////////
// This file is automatically generated by Mako
/////////////////////////////////////////////////////////////////

更改为

/////////////////////////////////////////////////////////////////
// This file is automatically generated by Mako from ${filename}
/////////////////////////////////////////////////////////////////

,插入正在处理的实际文件名的真正代码是什么?

I am new to python, and just want to make a simple change. We are generating a template file via mako under Windows 7 and I want to change the comments at the start of the output file from:

/////////////////////////////////////////////////////////////////
// This file is automatically generated by Mako
/////////////////////////////////////////////////////////////////

to

/////////////////////////////////////////////////////////////////
// This file is automatically generated by Mako from ${filename}
/////////////////////////////////////////////////////////////////

so, what is the real code to insert the actual filename being processed?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

瀞厅☆埖开 2024-12-01 03:09:28
import os

filename = os.path.basename(__file__)
print ('this is generated by ' + filename)
import os

filename = os.path.basename(__file__)
print ('this is generated by ' + filename)
灼疼热情 2024-12-01 03:09:28

对于 python 脚本本身的名称,请使用 __file__ :

$ echo "print __file__" > test.py                    
$ python test.py 
test.py

For the name of the python script itself, use __file__:

$ echo "print __file__" > test.py                    
$ python test.py 
test.py
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文