想了半天,没有头绪,后来理了一下,也就是:先将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
完成 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
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
使用递归函数需要注意防止栈溢出。在计算机中,函数调用是通过栈(stack)这种数据结构实现的,每当进入一个函数调用,栈就会加一层栈帧,每当函数返回,栈就会减一层栈帧。由于栈的大小不是无限的,所以,递归调用的次数过多,会导致栈溢出
2015-04-03
1,a是字符串所以是true,在a or 'world'关系中,返回true,所以是 hello, Python
2,b是空字符串所以是false,在b or ‘world’关系中,‘world’决定t or f,所以返回‘world’,即 hello,world
2,b是空字符串所以是false,在b or ‘world’关系中,‘world’决定t or f,所以返回‘world’,即 hello,world
2015-04-03
def toUppers(L):
return [x.upper() for x in L if isinstance(x, str)]
print toUppers(['Hello', 'world', 101])
isinstance(x, str)为真,if语句返回1
return [x.upper() for x in L if isinstance(x, str)]
print toUppers(['Hello', 'world', 101])
isinstance(x, str)为真,if语句返回1