检测 IDLE 的存在/如何判断 __file__ 是否未设置

发布于 2024-11-29 07:04:22 字数 84 浏览 1 评论 0原文

我有一个需要使用 __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 技术交流群。

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

发布评论

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

评论(1

ぃ双果 2024-12-06 07:04:22
if '__file__' not in globals():
    # __file__ is not set

如果您想在未设置 __file__ 的情况下执行一些特殊操作。或者,

try:
    __file__
except NameError:
    # __file__ is not set
    raise

如果您想做某事,那么无论如何都会引发错误,或者

global __file__
__file__ = globals().get('__file__', 'your_default_here')

如果您想要默认值。

if '__file__' not in globals():
    # __file__ is not set

if you want to do something special if __file__ isn't set. Or,

try:
    __file__
except NameError:
    # __file__ is not set
    raise

if you want to do something then raise an error anyway, or

global __file__
__file__ = globals().get('__file__', 'your_default_here')

if you want to have a default.

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