课程
/后端开发
/Python
/初识Python
def move(n, a, b, c): if n == 1: return (a, '->', c) else: return move(n-1, a, c, b) return move(1, a, b, c) return move(n-1, b, a, c) move(4, 'a', 'b', 'c') 请问错在哪儿呢? 用print的时候有好多none又是为啥呢?
2016-03-14
源自:初识Python 7-5
正在回答
L=[] def move(n,a,b,c,L): if n==1: L.append([a,c]) print a+'-->'+c return L else: move(n-1,a,c,b,L) move(1,a,b,c,L) move(n-1,b,a,c,L) move(3,'A','B','C',L) print L
题主是想实现将所有的移动过程存储起来?
return的作用之一是返回计算的值,print的作用是输出数据到控制端
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序