Skip to content Skip to sidebar Skip to footer

Read Tuples From Text File

I need to read tuples from a txt. I tried with numpy (using genfromtxt) but it didn't work (or at least, I don't know how). This is is my txt: (0,0) (0,0) (1,0) (2,3) (1,0) (1,1)

Solution 1:

Here's a simple way without using any libraries:

tuples = []
for t inopen('input.txt').read().split():
    a, b = t.strip('()').split(',')
    tuples.append((int(a), int(b)))

List comprehension equivalent:

[tuple(int(i) for i in t.strip('()').split(',')) for t in open('input.txt').read().split()]

With input.txt being the data provided in the question, this is the output:

[(0, 0), (0, 0), (1, 0), (2, 3), (1, 0), (1, 1), (1, 1), (3, 3), (2, 0), (1, 2), (2, 1), (4, 4), (3, 0), (2, 2), (3, 1), (5, 5)]

Solution 2:

You can try this one, although it does not use the numpy library:

from ast import literal_eval as createTuple

tupleList = []

withopen("test.txt","r") as infile:
    for line in infile:
        line = line.split()
        for l in line:
            tupleList.append(createTuple(l))

print(tupleList)

Format of input file:

(0,0) (0,0) (1,0) (2,3)
(1,0) (1,1) (1,1) (3,3)
(2,0) (1,2) (2,1) (4,4)
(3,0) (2,2) (3,1) (5,5)

Output (list of tuples):

[(0, 0), (0, 0), (1, 0), (2, 3), (1, 0), (1, 1), (1, 1), (3, 3), (2, 0), (1, 2), (2, 1), (4, 4), (3, 0), (2, 2), (3, 1), (5, 5)]

Post a Comment for "Read Tuples From Text File"