代码片
下面展示一些 内联代码片
。
# -*- coding: utf-8 -*-
def move(n, a, b, c):
if n<1:
return
elif n==1:
return print(a, '-->', c)
move((n-1),a,c,b)
move(1,a,b,c)
move((n-1),b,a,c)
move(2,'A','B','C')
A --> C
A --> B
C --> B
A --> C
B --> A
B --> C
A --> C
来源:CSDN
作者:#FFC0CB
链接:https://blog.csdn.net/weixin_44948387/article/details/104130766