我正在尝试将基因 ID 列表传递给 url。gl
存储基因 ID 列表。我需要"?term="
遍历列表中的元素并执行定义的函数。
import re
import urllib2
def sr():
gl = [6323,6513]
# need to pass the list gl here:
s = urllib2.urlopen('http://www.ncbi.nlm.nih.gov/gene/?term=','r')
h = s.read()
s.close()
acc = re.search('gi=(.+?)&',h)
if acc:
ac = acc.group(1)
f = open("E:/t.txt", "w")
f.write(ac);
f.close()