请问这里的return代表什么呢
def move(n, a, b, c):
#when there is only 1 block on A, move it to C directly
if n == 1:
print a, '-->', c
return #请问这里为什么要加这个return呢
move(n-1, a, c, b) # 这个包括以下的码是代表else的部分吗
print a, '-->', c
move(n-1, b, a, c)
move(4, 'A', 'B', 'C')