How do you incorporate the equation to be able to print the sample outputs by using the Python language?
By using this equation:
wct = 35.74 + 0.6215 * T - 35.75 * (V ** 0.16) + 0.4275 * T * (V ** 0.16)
Prompt the user to enter the number of locations for which WCT will be calculated. If a user inputs a zero or a negative value for the 'number of locations', then print a message and exit.
Print the average WCT collected across all locations.
Print the location with the lowest WCT.
Print the average air temperature collected across all locations.
Print the location with the lowest air temperature.
Print the average wind velocity collected across all locations.
Print the location with the highest wind velocity.