def function (): print "Hallo Welt" def faculty (x): if x > 1: return x * faculty (x-1) return 1 function () print faculty (5)