Python“”“”运算符不起作用

发布于 2024-09-27 16:01:57 字数 364 浏览 2 评论 0原文

可能的重复:
Python:递增和递减运算符的行为

嗨,我已经尝试过这。

++num

并且 num 根本不会改变,初始化时总是显示该值,

如果我将 ++num 更改为 num+=1 则它可以工作。

所以,我的问题是 ++ 运算符如何工作?

Possible Duplicate:
Python: Behaviour of increment and decrement operators

Hi, I've tried this.

++num

and the num doesn't change at all, always show the value when initialized

if I change ++num to num+=1 then it works.

So, my question is how that ++ operator works?

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

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

发布评论

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

评论(2

最后的乘客 2024-10-04 16:01:58

python 中没有 ++ 运算符。您对变量应用了两次一元 +

There isn't a ++ operator in python. You're applying unary + twice to the variable.

蘑菇王子 2024-10-04 16:01:58

答:Python中没有++运算符。 += 1 是递增数字的正确方法,但请注意,由于整数和浮点数在 Python 中是不可变的,因此

>>> a = 2
>>> b = a
>>> a += 2
>>> b
2
>>> a
4

此行为与可变对象的行为不同,其中 b 操作后也会改变:

>>> a = [1]
>>> b = a
>>> a += [2]
>>> b
[1, 2]
>>> a
[1, 2]

Answer: there is no ++ operator in Python. += 1 is the correct way to increment a number, but note that since integers and floats are immutable in Python,

>>> a = 2
>>> b = a
>>> a += 2
>>> b
2
>>> a
4

This behavior is different from that of a mutable object, where b would also be changed after the operation:

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