Minsu Kim/python/Rosalind / b2
From Biolecture.org
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&...")
f = open('rosalind_ini5.txt','r')
count = 1
f.close()
for line in f:
if(count%2==0):
print(line.strip())
count = count + 1