Python 中 x = (10
发布于 2024-10-14 21:04:44 字数 174 浏览 7 评论 0 原文

我想知道 python 中与此等效的内容是什么:

n = 100
x = (10 < n) ? 10 : n;
print x;

出于某种原因,这在 Python 中不起作用。我知道我可以使用 if 语句,但我只是好奇是否有更短的语法。

谢谢。

I was wondering what the equivalent in python to this would be:

n = 100
x = (10 < n) ? 10 : n;
print x;

For some reason this does not work in Python. I know I can use an if statement but I was just curious if there is some shorter syntax.

Thanks.

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

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

发布评论

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

评论(6

濫情▎り 2024-10-21 21:04:45

进行三元运算有多种方法,第一种是 2.5 添加的表达式:

n = foo if condition else bar

如果您想兼容低于 2.5 的版本,您可以利用布尔值是 int 的子类这一事实, True 的行为类似于 1,而 False 的行为类似于 0

n = [bar, foo][condition]

另一种可能性是利用 Python 中运算符的行为方式或者更准确地说,andor 的行为方式:

n = condition and foo or bar

There are various ways to make a ternary operation, the first one is the expression added with 2.5:

n = foo if condition else bar

If you want to be compatible with versions lower than 2.5 you can exploit the fact that booleans are subclasses from int and that True behaves like 1 whereas False behaves like 0:

n = [bar, foo][condition]

Another possibility is to exploit the way operators in Python behave or more exactly how and and or behave:

n = condition and foo or bar
压抑⊿情绪 2024-10-21 21:04:45
>>> n = 100
>>> x = 10 if n > 10 else n
>>> x
10
>>> n = 100
>>> x = 10 if n > 10 else n
>>> x
10
北城挽邺 2024-10-21 21:04:45
x = 10 if (10 < n) else n

(需要Python 2.5)

x = 10 if (10 < n) else n

(requires python 2.5)

厌倦 2024-10-21 21:04:44
x = min(n, 10)

或者,更一般地说:

x = 10 if 10<n else n
x = min(n, 10)

Or, more generally:

x = 10 if 10<n else n
绝不放开 2024-10-21 21:04:44

这是Python中的三元运算符(也称为条件表达式 在文档中)。

x if cond else y

Here is the ternary operator in Python (also know as conditional expressions in the docs).

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