tite fractale

tableaux_parcours.py

télécharger

Attention ! Cet interpréteur n’est pas totalement compatible avec Python3.

Theme:

 

Version inerte :

"""Parcours de tableaux à deux dimensions."""

from tableaux import Tableau

def tableau2x3():
    tab = Tableau(2)
    tab[0] = Tableau(3)
    tab[1] = Tableau(3)
    return tab

def p1():
    """>>> p1()
1 4
2 5
3 6
"""
    tab = tableau2x3()
    # Ici, parcours et affectations vous coderez.
    # ...
    return tab

def p2():
    """>>> p2()
4 1
5 2
6 3
    """
    tab = tableau2x3()
    # Ici, parcours et affectations vous coderez.
    # ...
    return tab

def p3():
    """>>> p3()
3 6
2 5
1 4
    """
    tab = tableau2x3()
    # Ici, parcours et affectations vous coderez.
    # ...
    return tab

def p4():
    """>>> p4()
6 3
5 2
4 1
    """
    tab = tableau2x3()
    # Ici, parcours et affectations vous coderez.
    # ...
    return tab

def p5():
    """>>> p5()
1 2
3 4
5 6
    """
    tab = tableau2x3()
    # Ici, parcours et affectations vous coderez.
    # ...
    return tab

def p6():
    """>>> p6()
2 1
4 3
6 5
    """
    tab = tableau2x3()
    # Ici, parcours et affectations vous coderez.
    # ...
    return tab

def p7():
    """>>> p7()
5 6
3 4
1 2
    """
    tab = tableau2x3()
    # Ici, parcours et affectations vous coderez.
    # ...
    return tab

def p8():
    """>>> p8()
6 5
4 3
2 1
    """
    tab = tableau2x3()
    # Ici, parcours et affectations vous coderez.
    # ...
    return tab

import doctest
doctest.testmod()









Page générée le 27/05/2021, 09h53'27" (page virtuelle).
historique global