想了半天,没有头绪,后来理了一下,也就是:先将a中的n-1个盘子移到b中,以c作为桥梁,即move(n-1,a,c,b),然后把a中剩下的那一个移到c,最后将b中的n-1个盘子移到c中,以a作为桥梁!
2015-04-05
sum = 0
x = 0
while True:
x = x + 1
if x > 50:
break
else:
sum=sum+(2*x-1)
continue
print sum
x = 0
while True:
x = x + 1
if x > 50:
break
else:
sum=sum+(2*x-1)
continue
print sum
2015-04-05
已采纳回答 / Costa_Rica
t = ('a', 'b', ['A', 'B'])总共有三项,按照你的方法得到t = ('a', 'b', 'A', 'B')总共有四项,所以可能不对
2015-04-05
完成 n 个盘子从 a 经过 b 到 c 的搬运只需要3步,第一步:将 n-1 个盘子从 a 经过 c 搬运到 b,即move(n-1, a, c, b); 第二步:将 第 n 个盘子 从 a 移到 c,即 print a, '-->', c; 第三步: 将 n-1个盘子从 b 经过 a 搬运到 c,即move(n-1, b, a, c);完事, 至于这 n-1 个盘子是怎么搬运的呢,他又自己进入了下一个循环
2015-04-04
最新回答 / anber
字符串的话和java中的subString比较像吧,list[0:0]返回空的列表也没问题啊,而且 取第一个就是0和1之间 也应该是list[0,1]呢
2015-04-04
if score <60:
return '<tr><td>%s</td><td style="color:red">%s</td></tr>' % (name, score)
else:
return '<tr><td>%s</td><td>%s</td></tr>' % (name, score)
return '<tr><td>%s</td><td style="color:red">%s</td></tr>' % (name, score)
else:
return '<tr><td>%s</td><td>%s</td></tr>' % (name, score)
2015-04-03