Minsu Kim/python/Rosalind / b3

From Biolecture.org
Revision as of 21:03, 12 December 2017 by imported>Minsukim (Created page with "<p><img alt="" src="/ckfinder/userfiles/images/bandicam%202017-12-12%2021-00-26-131.jpg" style="height:334px; width:1013px" /></p> <p> </p> <p>f = open('rosalind_ini5....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

 

f = open('rosalind_ini5.txt','r')
count = 1
f.close()

for line in f:
    if(count%2==0):
        print(line.strip())
    count = count + 1