T.E.M Κεφ7Δρ2

Δίνονται οι παρακάτω συναρτήσεις:

def python3():

        for i in range(3):

                print "python"

def python12():

        for i in range(12):
                print "python"

def python100():

        for i in range(100):
                print "python"

 

Ποια συνάρτηση θα επιλέγατε που να αποτελεί τη γενίκευση από όλες τις προηγούμενες;

def python(N):

        print  N*"python"

def python(10000):

        for i in range(10000):

                print "python"

def python(N):

        for i in range(N):

                print "python"