检测 IDLE 的存在/如何判断 __file__ 是否未设置
我有一个需要使用 __file__
的脚本,所以我了解到 IDLE 没有设置它。有没有办法从我的脚本中检测到 IDLE 的存在?
I had a script that needed the use of __file__
, and so I learned that IDLE doesn't set this. Is there a way from my script that I can detect the presence of IDLE?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想在未设置 __file__ 的情况下执行一些特殊操作。或者,
如果您想做某事,那么无论如何都会引发错误,或者
如果您想要默认值。
if you want to do something special if
__file__
isn't set. Or,if you want to do something then raise an error anyway, or
if you want to have a default.