dominic19807 dominic19807 12-01-2023 Computers and Technology contestada 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) + )_______ outFile.write(line)