p

python tutorial - Python Increment | Increment and Decrement Operators in Python - learn python - python programming



If you’re familiar with Python, you would have known Increment and Decrement operators ( both pre and post) are not allowed in it.

updating operators

Python is designed to be consistent and readable. One common error by a novice programmer in languages with ++ and -- operators is mixing up the differences (both in precedence and in return value) between pre and post increment/decrement operators. Simple increment and decrement operators aren’t needed as much as in other languages.

shorthand operators

You don’t write things like :

python - Sample - python code :

for (int i = 0; i < 5; ++i)

In Python, instead we write it like

# A Sample Python program to show loop (unlike many
# other languages, it doesn't use ++)
for i in range(0, 5):
   print(i)

Output:

0
1
2
3
4

We can almost always avoid use of ++ and --. For example, x++ can be written as x += 1 and x-- can be written as x -= 1.


Wikitechy tutorial site provides you all the learn python , python code , python script , python windows , python mysql , django python , python django , python compiler , jython , python interpreter , what is python , python join , python input , python modules , python editor , python examples , python pdf , python documentation

Related Searches to Increment and Decrement Operators in Python