# Die Funktion "x hoch n" def pow(x, n): if n == 0: return 1 else: return x * pow(x, n-1) print "3 hoch 4 ist ", pow(3,4)