Open main menu

Biolecture.org β

Minsu Kim/python/Rosalind / b2

Revision as of 21:01, 12 December 2017 by imported>Minsukim (Created page with "<p><img alt="" src="/ckfinder/userfiles/images/bandicam%202017-12-12%2020-59-18-875.jpg" style="height:301px; width:689px" /></p> <p>f = open('rosalind_ini5.txt','r&...")
(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