This repository has been archived on 2025-12-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2024-09-20 14:17:13 +03:00

5 lines
201 B
Python

t = float(input("Enter temperature in Fahrenheit:"))
w = float(input("Enter wind speed miles per hour:"))
print("The wind chill index is:", 35.74 +
(0.6215*t)-35.74*(w**0.16)+0.4275*t*(w**0.16))