Tagged Questions

3
votes
4answers
2k views

Common elements between two lists not using sets in Python

I want count the same elements of two lists. Lists can have duplicate elements, so I can't convert this to sets and use & operator. a=[2,2,1,1] b=[1,1,3,3] set(a) & set(b) work a & b ...
1
vote
5answers
239 views

How to eliminate last digit from each of the top lines

>Sequence 1.1.1 ATGCGCGCGATAAGGCGCTA ATATTATAGCGCGCGCGCGGATATATATATATATATATATT >Sequence 1.2.2 ATATGCGCGCGCGCGCGGCG ACCCCGCGCGCGCGCGGCGCGATATATATATATATATATATT ...
1
vote
3answers
112 views

Eliminate part of a file in python

In the below file I have 3 occurrences of '.1'. I want to eliminate the last one and write the rest of file to a new file. Kindly suggest some way to do it in PYTHON and thank you all. d1dlwa_ ...
0
votes
1answer
50 views

Django - Get ViewDoesNotExist on a view that isn't requested by the code

I've just finished the Django Tutorial (part 4) but when I go in to check the server after everything is finished I get this: Caught ViewDoesNotExist while rendering: Tried results in module ...