自动保存带有 .py 扩展名的 Python 脚本

发布于 2024-12-14 09:21:08 字数 132 浏览 5 评论 0原文

在Python IDE中,当我们保存脚本时,它会提示保存对话框。如果我们将文件名指定为“Test”。然后文件将不带扩展名保存为“Test”而不是“Test.py”。

是否可以自动保存带有 .py 扩展名的脚本(作为 Test.py)?

In Python IDE, while we save the script, it will prompt the save Dialog. If we specify the filename as "Test". Then file will be saved without extension as "Test" and not "Test.py".

Is it possible to save the script with .py extension automatically (as Test.py)?

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

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

发布评论

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

评论(2

同尘 2024-12-21 09:21:08

不幸的是,IDLE 不会也无法自动添加 .py 扩展名;您只需要养成自己添加它的习惯,或者使用其他 IDE(例如 Eclipse 或 Komodo)即可为您完成此操作。

Unfortunately, IDLE doesn't and can't add the .py extension automatically; you will just have to get into the habit of adding it yourself, or use another IDE like Eclipse or Komodo that will do it for you.

等你爱我 2024-12-21 09:21:08

IDLE 有一个关于此问题的错误报告:http://bugs.python.org/issue10364

如果您如果需要,您可以编辑 IDLE 本身来为您执行此操作。 IOBinding.py 中的 save_as 是一个不错的起点。

There is a bug report for IDLE about this: http://bugs.python.org/issue10364

If you want, you can edit IDLE itself to do this for you. A good place to start is save_as in IOBinding.py.

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