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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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