w3resource

Python Math: Calculate wind chill index

Python Math: Exercise-29 with Solution

Write a Python program to calculate the wind chill index.

Sample Solution:

Python Code:

import math
v = float(input("Input wind speed in kilometers/hour: "))
t = float(input("Input air temperature in degrees Celsius: "))
wci = 13.12 + 0.6215*t -  11.37*math.pow(v, 0.16) + 0.3965*t*math.pow(v, 0.16)
print("The wind chill index is", int(round(wci, 0)))

Sample Output:

Input wind speed in kilometers/hour: 120                                                                      
Input air temperature in degrees Celsius: 35                                                                  
The wind chill index is 40 

Flowchart:

Flowchart: Calculate wind chill index

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a python program to calculate the area of a regular polygon.
Next: Write a Python program to find the roots of a quadratic function.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/math/python-math-exercise-29.php