Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Python Please 3. Specification -Write a program that accepts as input a height in feet (or meters...just be consistent with your units). The program should
Python Please
3. Specification -Write a program that accepts as input a height in feet (or meters...just be consistent with your units). The program should calulate the height after every second, assuming you release the ball at the starting height. (this function assumes you don't throw up or down) Postion Function: pos(t)--16 * t2 + startingHeight # Feet Equation pos(t)--4.9 * t2 + startinglieight # Meter Equation Print out the position after each print saying it reached the ground at a specific time (i.e. posi-0, we are only dealing with integer seconds): Enter a height in feet: 200 il it reaches the ground, such as, and have a final 21 Pos (0)-200.000000 31 Pos (1)-184.000000 Pos (2)-136.000000 5 Pos (3)-56.000000 6The ball reaches the ground at 4 secondsStep 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