对于这个三元条件有更好的解决方案吗?

发布于 2024-11-27 16:06:03 字数 184 浏览 2 评论 0原文

想象一下以下三元条件:

foreground = self.foreground if self.foreground else c4d.COLOR_TRANS

在这种情况下,我需要调用 self.foreground 两次来检查它是否为 True。 有没有一种方法让我只需要调用一次?

Imagine the following ternary condition:

foreground = self.foreground if self.foreground else c4d.COLOR_TRANS

In this case, I need to call self.foreground twice just to check if it is True or not.
Is there a way where I only need to call it once ?

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

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

发布评论

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

评论(2

咿呀咿呀哟 2024-12-04 16:06:03

一个等价的表达式是

foreground = self.foreground or c4d.COLOR_TRANS

An equivalent expression is

foreground = self.foreground or c4d.COLOR_TRANS
走过海棠暮 2024-12-04 16:06:03

您可以使用布尔运算符:

foreground = self.foreground or c4d.COLOR_TRANS

You can use the boolean operators:

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