Answered step by step
Verified Expert Solution
Question
1 Approved Answer
PYTHON HELP: For this lab, you will write a program to determine how many licks it takes to get to the chewy center of a
PYTHON HELP:
For this lab, you will write a program to determine how many licks it takes to get to the chewy center of a Tootsie Pop. You will use both a while loop and a for loop to display how much of the outer shel remains after each lick. Algorithm .Get radius of whole Tootsie Pop, radius of inner center (millimeters) . Get volume removed by each lick (cubic millimeters) . Calculate volume of chewy center and of whole Tootsie Pop o Subtract to find volume of hard outer shell Display center and shell volumes Using a while loop, o Remove one lick's shell o Compute new radius of outer shell o Display every tenth radius pair, along with lick number o Repeat till outer shell radius equal to (or just slightly less) than center radius worth volume from outer Display final lick count and radii Using original volume of shell, mathematically compute how many licks it takes Using a for loop, Display final lick count and radii o Repeat first three steps of while loop actions above Volume Formula The formula to calculate volume of a sphere is: In order to find the radius, give a volume, you'll have to do a little algebraic rearranging of the formula, solving for r
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started