Lol I think it’s 1 but I’m not sure
Answer:
there is no movie name off of
with open('celcius.dat', 'r') as fIn, open('fahrenheit.dat', 'w') as fOut:
for line in fIn:
fahrenheit = 9.0 / 5.0 * float(line) + 32
fOut.write("%.1f\n" % fahrenheit)
You can control the number of decimals in the formatting clause in the write statement.
Converting raw data into a more meaningful form is called: processing
Answer:
I don't know you should figure that out good luck
Explanation:
good luck