python生成列表作为全局列表_如何在python中定义全局列表
我有两个方法应该写入同一个列表.class MySpider():def parse_post(self, response):commentList = []...commentList.append(someData)def parse_comments(self, response):commentList = []...commentList.append(someData)在这段代码中有...