为什么答案中只有print a,'-->',c的句子
为什么答案中只有print a,'-->',c的句子,执行完代码后的答案却有b-->a,c-->a,a-->b,这样的话写print a,'-->',c有什么作用?
还有答案中有c-->a的答案 这我就有点不能理解了,最后的目的是要到c的,怎么还会有c-->a的步骤??
def move(n, a, b, c): if n == 1: print a,'-->',c return move(n-1, a, c, b) print a,'-->',c move (n-1, b, a, c) move(4, 'A', 'B', 'C')