Answers for "open textfile separated by whitespaces python"

0

open textfile separated by whitespaces python

numbers = []

#Open the file
with open('file.txt') as fp:
    #Iterate through each line
    for line in fp:

        numbers.extend( #Append the list of numbers to the result array
            [int(item) #Convert each number to an integer
             for item in line.split() #Split each line of whitespace
             ])

print(numbers)
Posted by: Guest on May-10-2021

Code answers related to "open textfile separated by whitespaces python"

Python Answers by Framework

Browse Popular Code Answers by Language