how to subtract numbers in python

Solutions on MaxInterview for how to subtract numbers in python by the best coders in the world

showing results for - "how to subtract numbers in python"
Riccardo
30 Jan 2017
1num1 = 99999
2num2 = 99999
3
4# Add two numbers
5subtract = num1 - num2
6
7# Display the subtract
8print('The subtraction of {0} and {1} is {2}'.format(num1, num2, subtract))