python中基本运算符_Python中递增和递减运算符的行为

python中基本运算符

Python is considered to be a consistent and readable language. Unlike in Java, python does not support the increment (++) and decrement (--) operators, both in precedence and in return value.

Python被认为是一致且易读的语言。 与Java不同,python在优先级和返回值上均不支持递增(++)和递减(-)运算符

For example, in python the x++ and ++x or x-- or --x is not valid.

例如,在python中, x ++和++ x或x--或--x无效。

x=1
x++

Output

输出量

  File "main.py", line 2
    x++
      ^
SyntaxError: invalid syntax

x=1

print(--x)
# 1
print(++x)
# 1

print(x--)
'''
  File "main.py", line 8
    print(x--)
             ^
SyntaxError: invalid syntax
'''

The reason for this is, in python integers are immutable and hence cannot be changed. So, we will have to do the following for incrementing,

原因是,在python中,整数是不可变的,因此无法更改。 因此,我们必须执行以下操作才能递增,

x = 1

x=x+1
print(x)

x=x-1
print(x)

x +=2
print(x)

x -= 1
print(x)

Output

输出量

2
1
3
2


翻译自: https://www.includehelp.com/python/behavior-of-increment-and-decrement-operators.aspx

python中基本运算符

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值