November 2018
Beginner
304 pages
7h 35m
English
One thing that wasn't addressed in the requirements but will be necessary later is the need for utility functions. These are often found in applications and provide functionality for the main program, but don't directly apply to the core logic.
For this program, we will require a number of utility functions:
The functions are shown next (in separate parts), with explanations following each part:
# utility_formulas.py (part 1)1 #!/usr/bin/env python3 2 3 import math 4 5 GRAVITY = 32.174 # ft/s^2 ...Read now
Unlock full access