def rebours(n): if n == 0: print() return print(n, end=" ") rebours(n-1) rebours(12) def compte(t, n=1): print(n, end=" ") if n < t: compte(t, n+1) else: print() compte(5)