C) Debugging. Debugging is when you fix the errors in your code
You would do 1/4 * 2.4, since 25 goes into 60 2.4 times so the answer would be 60 mph
<u>Answer</u> : Float
<u>Explanation</u> :
Complete the code.
import csv
inFile = open ("one.txt","r")
outFile = open("another.txt", "w")
myReader = csv.reader(inFile)
for item in myReader:
aWord = item[0]
aNumber = float(item[1]) + 0.4
line = aWord + "," + str(aNumber) + 'Float'
outFile.write(line)