def a_function(n, a, b, c):
if n == 1:
print((a,b))
else:
a_function(n-1, a, c, b)
print((a,b))
a_function(n-1, c, b, a)
a_function(3, 1, 2, 3)
如何使函數返回一個元組而不是上面的輸出? ((1,2),(1,3),(2,3),(1,2),(3,1),(3,2),(1,2)的情況下, ))將輸出更改爲元組[python]
請妥善修理壓痕。 – Gogo