def recursiv_function(x): if (x > 10): return print("Hello Parameter is", x) recursiv_function(x+1) recursiv_function(1)