这是一个创建于 4107 天前的主题,其中的信息可能已经有所发展或是发生改变。
def cat(para,x):
if len(x)==0:
return para
prefix=x.pop()
para=prefix+para
return cat(para,x)
b=['http',":","//","www",".baidu.com"]
hrefs=['/t20120705_1887040.html', '/t20120608_1846662.html']
for url in hrefs:
c=[]
c=b
print(cat(url,c))
本来是将每个链接用尾递归函数处理一遍,但是第二条纪录以后, b就已经变为空了
1 条回复 • 1970-01-01 08:00:00 +08:00
|
|
1
timonwong 2013-08-09 15:25:25 +08:00
list是mutable的
|