Assume that file containing a series of floats is named floats.txt and exists on the computer's disk. Write a complete program that displays all of the numbers in the file. In python please.

Respuesta :

Answer:

open("floats.txt",'r') as file:

print(file.read())

RELAXING NOICE
Relax

Otras preguntas