Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Wholesale Cost?

# What is the total wholesale cost for 60 copies?

cover_price = 24.95
bookstore_discout = 0.40
shipping_costs = 3
additional_copies = 0.75
number_of_copies = 60


bookstore_discout_answer = cover_price * bookstore_discout
shipping_costs_answer = shipping_costs
additional_copies_answer = additional_copies * (number_of_copies - 1)

total =  (bookstore_discout_answer * 60) + shipping_costs + additional_copies_answer

print(total)
print("%.2f" % total)
print(round(total, 2))

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.