0
votes
4answers
82 views

Searching a file with the contents of another file python

I have a file that has a unique ID number on each line. I am trying to search a different file for the occurrences of these ID numbers and return the line where these id numbers are in the second ...
10
votes
4answers
364 views

Is there a better way to use strip() on a list of strings? - python

For now i've been trying to perform strip() on a list of strings and i did this: i = 0 for j in alist: alist[i] = j.strip() i+=1 Is there a better way of doing that?
2
votes
3answers
145 views

more then one expression in list comprehension?

i want to use a list comprehension to split elements of a list. line = [x.split(", ") for x in lineList] At same time I'd like to remove tailing and leading characters of the elements ...
1
vote
5answers
6k views

Using strip on lists

I have to take a large list of words in the form: ['this\n', 'is\n', 'a\n', 'list\n', 'of\n', 'words\n'] and then using the strip function, turn it into: ['this', 'is', 'a', 'list', 'of', 'words'] ...
0
votes
4answers
93 views

strip ' from all members in a list

Ok, so I converted each line in a text file into a member of a list by doing the following: chkseq=[line.strip() for line in open("sequence.txt")] So when I print chkseq I get this: ['3','3'] What ...
0
votes
5answers
2k views

Is there a shorter way to remove line breaks when reading from a file to a list?

Here is my current code: dfile = open('dictionary.txt', 'r') sfile = open('substrings.txt', 'r') dictionary_words = [] substrings = [] for line in dfile: ...
0
votes
5answers
787 views

python stripping chars from list item

I'm trying to strip characters from timestamp stored in matrix (or list of lists if you want). I want to extract the item and use it as a filename after stripping unwanted characters (it should stay ...