Use f_strings to output variables. This program requires the main function and a custom value-returning function. In the main function, code these steps in this sequence: use a list comprehension to generate 50 random integers all from -40 to 40, inclusive. These represent Celsius temperatures. use an f_string to report the lowest and highest Celsius temperature in the list. determine if 0C is in the list. If it is report the index where it first occurs. If it isn't in the list, report that, too. use a random module method to create a sublist of 10 unique Celsius temperatures. sort this sublist in ascending order. pass the Celsius sublist as the sole argument to the custom value-returning function. In the custom function: use either a loop or a list comprehension to create a list of 10 Fahrenheit temperatures equivalent to the Celsius temperatures. A bonus of 3 points will be awarded if a list comprehension is employed. return the Fahrenheit list to main. Back in main: use a for loop and the range function to print a table showing the equivalent Celsius and Fahrenheit temperatures in columns with widths that you choose. include column headings and display the averages as shown below.
- Use f_strings to output variables.
This program requires the main function and a custom value-returning function.
In the main function, code these steps in this sequence:
- use a list comprehension to generate 50 random integers all from -40 to 40, inclusive. These represent Celsius temperatures.
- use an f_string to report the lowest and highest Celsius temperature in the list.
- determine if 0C is in the list. If it is report the index where it first occurs. If it isn't in the list, report that, too.
- use a random module method to create a sublist of 10 unique Celsius temperatures.
- sort this sublist in ascending order.
- pass the Celsius sublist as the sole argument to the custom value-returning function.
In the custom function:
- use either a loop or a list comprehension to create a list of 10 Fahrenheit temperatures equivalent to the Celsius temperatures. A bonus of 3 points will be awarded if a list comprehension is employed.
- return the Fahrenheit list to main.
Back in main:
- use a for loop and the range function to print a table showing the equivalent Celsius and Fahrenheit temperatures in columns with widths that you choose.
- include column headings and display the averages as shown below.
Code:
from tabulate import tabulate
import random
randomlist = []
for i in range(0,50):
n = random.randint(-40,40)
randomlist.append(n)
print(randomlist)
max(randomlist)
min(randomlist)
print("Lowest temp is {} highest temp is {}".format(max(randomlist),min(randomlist)))
for i in range(0,50):
if(randomlist[i] == 0):
index = i
print("0C at index ",index)
sublist=random.sample(randomlist, 10)
sublist.sort()
print(sublist)
def newFunction(sublist):
sublist2 = []
for C_val in sublist:
f_val = (C_val * 1.8) + 32
sublist2.append(f_val)
return sublist2
newList=newFunction(sublist)
print(sublist)
print(newList)
print (tabulate(zip(sublist,newList), headers=["CELSIUS", "FARHENHEIT"]))
print(sum(sublist)/len(sublist) " "+ sum(newList) / len(newList)" <-- averages")
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 4 images