Advertisement
Guest User

Untitled

a guest
May 5th, 2022
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. def excluding_vat_price(price):
  2. vatPrice = ((price * 15) / 115)
  3. priceWithoutVat = price - vatPrice
  4. return -1 if price == 0 else round(priceWithoutVat, 2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement