Discuss / Python / Assignment

Assignment

Topic source

遥望君山

#1 Created at ... [Delete] [Delete and Lock User]
def move(n, a, b, c):
    if n == 1:
        print(a, '-->', c)
    else:
        move(n-1, a, c, b)
        print(a, '-->', c)
        move(n-1, b, a, c)

你没有return   代码跑不了  发上来干啥?


  • 1

Reply