Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python - from file to data structure?

Tags:

python

string

I have large file comprising ~100,000 lines. Each line corresponds to a cluster and each entry within each line is a reference i.d. for another file (protein structure in this case), e.g.

1hgn 1dju 3nmj 8kfn
9opu 7gfb 
4bui

I need to read in the file as a list of lists where each line is a sublist, thus preserving the integrity of the cluster, e.g.

nested_list = [['1hgn', '1dju', '3nmj', '8kfn'], ['9opu', '7gfb'], ['4bui']]

My current code creates a nested list but the entries within each list are a single string and not comma separated. Therefore, I cannot splice the list with indices so easily.

Any help greatly appreciated.

Thanks, S :-)

like image 939
Darren J. Fitzpatrick Avatar asked Mar 06 '26 19:03

Darren J. Fitzpatrick


2 Answers

Super simple:

with open('myfile', 'r') as f:
    data = [line.split() for line in f]
like image 107
Oli Avatar answered Mar 08 '26 09:03

Oli


You'll want to investigate the str.split() method.

>>> '1hgn 1dju 3nmj 8kfn'.split()
['1hgn', '1dju', '3nmj', '8kfn']
like image 40
Peter Milley Avatar answered Mar 08 '26 09:03

Peter Milley



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!