Question: Using python: The wind chill factor (WCF) measures how cold it feels with a given air temperature T (in degrees Fahrenheit) and wind speed V
Using python: The wind chill factor (WCF) measures how cold it feels with a given air temperature T (in degrees Fahrenheit) and wind speed V (in miles per hour). One formula for WCF is WCF = 35.7 + 0.6 T 35.7 (V0.16) + 0.43 T (V0.16) Write a program to receive the temperature and wind speed as input arguments, and return the WCF. Using loops, print a table showing the wind chill factors for temperatures ranging from 30 to -30 in steps of -5, and wind speeds ranging from 5 to 60 in steps of 5(listed along the left side of the table). Use string formatting to show 1 decimal place in the initial wcf and 0 decimal places in the table. The program might look something like this when you run. Enter the temperature:40 Enter the wind speed:5 The wind chill factor is 35.8 ************Wind Chill at other temperatures************ 30 25 20 15 10 5 0 -5 -10 -15 -20 -25 -30 ----------------------------------------------------------------------- 5| 24 18 13 7 1 -5 -10 -16 -22 -28 -34 -39 -45 10| 21 15 9 2 -4 -10 -16 -22 -28 -34 -40 -46 -53 15| 19 12 6 0 -7 -13 -19 -26 -32 -38 -45 -51 -57 20| 17 10 4 -3 -9 -15 -22 -28 -35 -41 -48 -54 -61 25| 16 9 2 -4 -11 -17 -24 -31 -37 -44 -50 -57 -64 30| 14 8 1 -6 -12 -19 -26 -33 -39 -46 -53 -59 -66 35| 13 7 0 -7 -14 -21 -27 -34 -41 -48 -55 -61 -68 40| 13 6 -1 -8 -15 -22 -29 -36 -42 -49 -56 -63 -70 45| 12 5 -2 -9 -16 -23 -30 -37 -44 -51 -58 -65 -72 50| 11 4 -3 -10 -17 -24 -31 -38 -45 -52 -59 -66 -73 55| 10 3 -4 -11 -18 -25 -32 -39 -46 -53 -60 -67 -75 60| 10 3 -4 -12 -19 -26 -33 -40 -47 -54 -62 -69 -76
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
