python urllib.request.urlopen递归失败
所以我有代码
def constructGraph(self,url,doit=5):
if doit!=0:
m = urllib.request.urlopen(url)
print('test')
self.constructGraph('http://example.com',doit-1)
但是当我运行它时,它只运行第一个m = urllib.request.urlopen(url)
并且只打印测试一次,即使它应该做两次...
当我运行调试器时,它甚至不会在第二次递归时转到print('test')行并且只是退出
我做错了什么?
我正在使用python 3
没有找到相关结果
已邀请:
1 个回复
钨蜡唤喉晤