python

Solutions on MaxInterview for python by the best coders in the world

showing results for - " python"
Leonardo
19 Feb 2016
1# There is no -- in Python, use -= instead:
2number -= 1
3
4# Example:
5number = 4
6number -= 1
7print(number)