自动保存带有 .py 扩展名的 Python 脚本
在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不幸的是,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.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.