Question

Exercise 2.2. Practice using the Python interpreter as a calculator: 1. The volume of a sphere uith radius r is rs. What is the volume of a sphere with radius 5? 2. Suppose the cover price of a book is $24.95, but bookstores get a 40% discount. Shipping costs $3 for the first copy and 75 cents for each additional copy. What is the total wholesale cost for 60 copies? . If I leave my house at 6:52 am and run 1 mile at an easy pace (8:15 per mile), then 3 miles at tempo (7:12 per mile) and 1 mile at easy pace again, what time do Iget home for breakfast?

0 0
Add a comment Improve this question Transcribed image text
Answer #1

In order to run the below queries, open Python console and then type the following statements.

CODE

==============

import math

radius = 5.0

print((4 * math.pi * (radius ** 3))/3)

cover_price = 0.6 * 24.95

total_cost = cover_price * 60 + (3 * 59*.75)

print(total_cost)

NOTE: I did not understand part 3. Hence, I have skipped it. What is 8:15 per mile?

Add a comment
Know the answer?
Add Answer to:
Exercise 2.2. Practice using the Python interpreter as a calculator: 1. The volume of a sphere...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT