Discuss / Python / 交作业

交作业

Topic source

林林1292

#1 Created at ... [Delete] [Delete and Lock User]

def move(n,a,b,c): if n==1: return print('====',a,'-->',c) else: move(n-1,a,c,b) print('====',a,'-->',c) move(n-1,b,a,c)

print('==============') move(1,'A','B','C') print('==============') move(3,'A','B','C') print('==============')


  • 1

Reply