以下是我的python脚本报告的错误:
TypeError Traceback (most recent call last)
/home/jhourani/openbel-contributions/resource_generator/change_log.py in <module>()
37 for k, v in namespaces.items():
38 #ipdb.set_trace()
---> 39 if v[0]:
40 v[1].append(token)
41
TypeError: 'bool' object is not subscriptable
好的,我猜这一切都很好。但是当我在ipdb
中进一步检查这个元素时,结果是:
>>> v
(False, [])
>>> type(v)
<class 'tuple'>
>>> v[0]
False
>>> if v[0]:
... print('true')
... else:
... print('false')
...
false
>>>
条件测试在ipdb
中工作,但是当我运行脚本时,解释器似乎将v
视为布尔值,而不是当然可以下标的元组。 1.为什么? 2.为什么两者之间存在差异?
以下是我编写的代码块:
old_entrez = []
old_hgnc = []
old_mgi = []
old_rgd = []
old_sp = []
old_affy = []
# iterate over the urls to the .belns files
for url in parser.parse():
namespaces = { 'entrez' : (False, old_entrez), 'hgnc' : (False, old_hgnc),
'mgi' : (False, old_mgi), 'rgd' : (False, old_rgd),
'swissprot' : (False, old_sp), 'affy' : (False, old_affy) }
open_url = urllib.request.urlopen(url)
for ns in namespaces.keys():
if ns in open_url.url:
namespaces[ns] = True
marker = False
for u in open_url:
# skip all lines from [Values] up
if '[Values]' in str(u):
marker = True
continue
if marker is False:
continue
# we are into namespace pairs with '|' delimiter
tokenized = str(u).split('|')
token = tokenized[0]
for k, v in namespaces.items():
ipdb.set_trace()
if v[0]:
v[1].append(token)
答案 0 :(得分:2)
您正在检查第一次迭代,它可以正常工作。
稍后会发生异常。再循环一遍循环,因为在某些时候你会遇到一个名称空间键,其值已设置为True
(不是布尔值和列表的元组)
为什么呢?因为在您的代码中,您可以:
for ns in namespaces.keys():
if ns in open_url.url:
namespaces[ns] = True
注意那里的= True
;你或许打算将其设置为:
namespaces[ns] = (True, namespaces[ns][1])
请注意,要遍历字典的键,您可以直接执行此操作:
for ns in namespaces:
并保存自己的属性查找,函数调用和创建一个全新的列表对象。