how to divide a variable with a digit in python

Solutions on MaxInterview for how to divide a variable with a digit in python by the best coders in the world

showing results for - "how to divide a variable with a digit in python"
Emely
28 Sep 2018
1>>> x = 2
2>>> y = 3
3>>> z = 5
4>>> x * y
56
6>>> x + y
75
8>>> x * y + z
911
10>>> (x + y) * z
1125
12