Python3

Tout ce qui concerne notamment les outils de calcul numérique, de calcul formel ou de géométrie.
[participation réservée aux utilisateurs inscrits]
Règles du forum
Merci de soigner la rédaction de vos messages et de consulter ce sujet avant de poster. Pensez également à utiliser la fonction recherche du forum.
OG
Modérateur spécialisé
Modérateur spécialisé
Messages : 2293
Inscription : lundi 12 mars 2007, 11:20
Localisation : Rouen

Re: Python3

Message non lu par OG »

Francky a écrit :Matplotlib et python3 sous linux-deb (pangolin).

Je viens de lire ça, mais j'ai pas testé.
Le lien sur ppa était celui que j'avais repéré il y a quelques temps, cela évite une installation/compilation depuis la version en développement.

Mais je n'ai pas encore ni testé ni installé (il faudrait que j'ai besoin de faire du Python/Numpy/etc d'une part
et d'autre part la volonté de passer à Python 3)

O.G.
Fabrice Couvreur
Utilisateur éprouvé
Utilisateur éprouvé
Messages : 604
Inscription : samedi 18 août 2007, 01:55

Re: Python3

Message non lu par Fabrice Couvreur »

Bonsoir,
J'utilise python2.7, mais j'ai essayé de compiler quelques codes avec python3.2 : certains compilent sans problèmes, d'autres non. Par exemple le classique :

Code : Tout sélectionner

def fact(n):
    if n==0:
        return 1
    else:
        return n*fact(n-1)
n = input('n = ')
print 'La factorielle de' ,n, 'est :',fact(n)
compile avec python2.7, mais non avec python3.2, même modifié comme ceci :

Code : Tout sélectionner

def fact(n):
    if n==0:
        return 1
    else:
        return n*fact(n-1)
n = input('n = ')
print ('La factorielle de',n, 'est :',fact(n))
Merci.
projetmbc
Utilisateur chevronné
Utilisateur chevronné
Messages : 2238
Inscription : samedi 29 décembre 2007, 00:58

Re: Python3

Message non lu par projetmbc »

Il faut utiliser

Code : Tout sélectionner

n = int(input('n = '))
au lieu de

Code : Tout sélectionner

n = input('n = ')
Fabrice Couvreur
Utilisateur éprouvé
Utilisateur éprouvé
Messages : 604
Inscription : samedi 18 août 2007, 01:55

Re: Python3

Message non lu par Fabrice Couvreur »

Bonsoir,
Merci, mais pourquoi cette subtilité ?
Arnaud
Modérateur honoraire
Modérateur honoraire
Messages : 7097
Inscription : lundi 28 août 2006, 13:18
Localisation : Allemagne
Contact :

Re: Python3

Message non lu par Arnaud »

A partir de python 3, la fonction input() se comporte comme l'ancienne fonction raw_input(), à savoir fourni une chaîne de caractères.
Pour récupérer un entier, la conversion est donc nécessaire.
Arnaud
Un peu d'info - Pyromaths - Pas d'aide en MP (non plus)
Fabrice Couvreur
Utilisateur éprouvé
Utilisateur éprouvé
Messages : 604
Inscription : samedi 18 août 2007, 01:55

Re: Python3

Message non lu par Fabrice Couvreur »

Bonjour,
Merci pour ces explications très claires.
Tonn83
Utilisateur éprouvé
Utilisateur éprouvé
Messages : 886
Inscription : mercredi 05 novembre 2008, 01:19
Localisation : Paris, France

Re: Python3

Message non lu par Tonn83 »

Romain Janvier a écrit :Il faut aussi décider quel est l'objectif : l'apprentissage de python ou de l'algo. Parce que pour un tuto d'algo, il faut bien comprendre ce qui est du raisonnement et ce qui est de la syntaxe.
:roll: En même temps, comment raisonnablement présenter un apprentissage de l'algorithmique sans faire le choix arbitraire d'un langage, fusse-t-il fictif ?
Tonn83
projetmbc
Utilisateur chevronné
Utilisateur chevronné
Messages : 2238
Inscription : samedi 29 décembre 2007, 00:58

Re: Python3

Message non lu par projetmbc »

+1

De plus, au lycée, on fait une initiation à la programmation mathématique et on de l'algorithmique. Une confusion des termes qui devient pénible à la longue...
Arnaud
Modérateur honoraire
Modérateur honoraire
Messages : 7097
Inscription : lundi 28 août 2006, 13:18
Localisation : Allemagne
Contact :

Re: Python3

Message non lu par Arnaud »

Pour ceux qui utilisent python dans leurs cours, voici un outil que je trouve très bon : http://www.pythontutor.com/visualize.html
Valable pour python 2 ou 3.

Les boucles sont limitées à 300 pas, et impossible de l'utiliser avec une entrée utilisateur ( input ), mais ce n'est rien de grave.
Arnaud
Un peu d'info - Pyromaths - Pas d'aide en MP (non plus)
projetmbc
Utilisateur chevronné
Utilisateur chevronné
Messages : 2238
Inscription : samedi 29 décembre 2007, 00:58

Re: Python3

Message non lu par projetmbc »

Salut.

Sympa ce lien. C'est même super comme outil pour débuter. Génial !
Francky
Utilisateur éprouvé
Utilisateur éprouvé
Messages : 681
Inscription : dimanche 11 avril 2010, 14:01

Re: Python3

Message non lu par Francky »

Au fait, je viens de voir que matplotlib 1.2.1 (la dernière version) est disponible dans Mint 15 (donc probablement dans beaucoup de distro récentes), et qu'il y a un paquet python3 aussi.
Grande nouvelle.
(Il ne reste plus que sagemaths à passer en python3.)
Linux Mint | TeXLive - TexMaker - asymptote | Python3 & C - Geany - Project Euler - SPOJ
Entia non sunt multiplicanda praeter necessitatem
OG
Modérateur spécialisé
Modérateur spécialisé
Messages : 2293
Inscription : lundi 12 mars 2007, 11:20
Localisation : Rouen

Re: Python3

Message non lu par OG »

Merci pour l'info.
Oui certainement parce que Ubuntu a fait aussi le saut dans sa dernière version.
Pour debian, numpy et scipy sont disponibles en version python 3 sous stable (et donc testing, sid),
mais matplotlib version Python 3 n'apparaît uniquement qu'en experimental (pire que sid :) ).
Il faut dire que le passage de Matplotlib est plus récent.

Sous Arch cela doit être disponible depuis "longtemps", quant à Fedora je ne sais pas.

O.G.
maurice
Utilisateur éprouvé
Utilisateur éprouvé
Messages : 399
Inscription : jeudi 25 mars 2010, 13:49

Re: Python3

Message non lu par maurice »

OG a écrit : Sous Arch cela doit être disponible depuis "longtemps", quant à Fedora je ne sais pas.
Sous Fedora 18 :

Code : Tout sélectionner

$ yum info python3-matplotlib
Modules complémentaires chargés : langpacks, presto, refresh-packagekit
Paquets disponibles
Nom                 : python3-matplotlib
Architecture        : x86_64
Version             : 1.2.0
Révision            : 12.fc18
Taille              : 26 M
Dépôt               : updates/18/x86_64
Résumé              : Python 2D plotting library
URL                 : http://matplotlib.org
Licence             : Python
Description         : Matplotlib is a python 2D plotting library which produces
                    : publication quality figures in a variety of hardcopy
                    : formats and interactive environments across platforms.
                    : matplotlib can be used in python scripts, the python and
                    : ipython shell, web application servers, and six graphical
                    : user interface toolkits.
                    : 
                    : Matplotlib tries to make easy things easy and hard things
                    : possible. You can generate plots, histograms, power
                    : spectra, bar charts, errorcharts, scatterplots, etc, with
                    : just a few lines of code.
et

Code : Tout sélectionner

$ yum list python3-*
Modules complémentaires chargés : langpacks, presto, refresh-packagekit
Paquets installés
python3.x86_64                         3.3.0-1.fc18                      @fedora
python3-libs.x86_64                    3.3.0-1.fc18                      @fedora
Paquets disponibles
python3.i686                           3.3.0-1.fc18                      fedora 
python3-ATpy.noarch                    0.9.6-4.fc18                      fedora 
python3-CairoSVG.noarch                0.5-2.fc18                        updates
python3-Cython.x86_64                  0.18-1.fc18                       updates
python3-MultipartPostHandler2.noarch   0.1.1-4.fc18                      updates
python3-PyQt4.i686                     4.10.1-4.fc18                     updates
python3-PyQt4.x86_64                   4.10.1-4.fc18                     updates
python3-PyQt4-assistant.x86_64         4.10.1-4.fc18                     updates
python3-PyQt4-devel.i686               4.10.1-4.fc18                     updates
python3-PyQt4-devel.x86_64             4.10.1-4.fc18                     updates
python3-PyYAML.x86_64                  3.10-6.fc18                       fedora 
python3-alembic.noarch                 0.3.4-4.fc18                      fedora 
python3-amqplib.noarch                 1.0.2-6.fc18                      fedora 
python3-ansi2html.noarch               0.9.4-1.fc18                      updates
python3-anyjson.noarch                 0.3.3-2.fc18                      fedora 
python3-apipkg.noarch                  1.2-1.fc18                        fedora 
python3-apsw.x86_64                    3.7.11.r1-8.fc18                  fedora 
python3-asciitable.noarch              0.8.0-5.fc18                      updates
python3-auth.credential.noarch         1.0-1.fc18                        updates
python3-beaker.noarch                  1.5.4-6.fc18                      fedora 
python3-beautifulsoup4.noarch          4.1.3-1.fc18                      updates
python3-billiard.noarch                2.7.3.17-1.fc18                   fedora 
python3-blessings.noarch               1.5-1.fc18                        updates
python3-bottle.noarch                  0.11.6-1.fc18                     updates
python3-bpython.noarch                 0.12-2.fc18                       updates
python3-bson.x86_64                    2.3-6.fc18                        updates
python3-cairo.x86_64                   1.10.0-4.fc18                     fedora 
python3-cairo-devel.i686               1.10.0-4.fc18                     fedora 
python3-cairo-devel.x86_64             1.10.0-4.fc18                     fedora 
python3-cangjie.x86_64                 0.0.1-1.fc18                      updates
python3-cement.noarch                  2.0.2-1.fc18                      fedora 
python3-chameleon.noarch               2.11-1.fc18                       updates
python3-chardet.noarch                 2.0.1-8.fc18                      fedora 
python3-cherrypy.noarch                3.2.0-0.rc1.r2567.1.fc18.6        fedora 
python3-cliff.noarch                   1.3-1.fc18                        updates
python3-cmd2.noarch                    0.6.4-4.fc18                      fedora 
python3-coverage.x86_64                3.5.3-2.fc18                      fedora 
python3-crypto.x86_64                  2.6-4.fc18                        fedora 
python3-cvxopt.x86_64                  1.1.5-5.fc18                      fedora 
python3-d2to1.noarch                   0.2.7-2.fc18                      updates
python3-dateutil.noarch                2.0-4.fc18                        fedora 
python3-dbus.x86_64                    1.1.1-3.fc18                      updates
python3-debug.i686                     3.3.0-1.fc18                      fedora 
python3-debug.x86_64                   3.3.0-1.fc18                      fedora 
python3-decorator.noarch               3.4.0-1.fc18                      fedora 
python3-defusedxml.noarch              0.4-1.fc18                        updates
python3-deltarpm.x86_64                3.6-0.11.20110223git.fc18         fedora 
python3-devel.i686                     3.3.0-1.fc18                      fedora 
python3-devel.x86_64                   3.3.0-1.fc18                      fedora 
python3-dirq.noarch                    1.2.2-3.fc18                      fedora 
python3-dns.noarch                     1.10.0-3.fc18                     updates
python3-docutils.noarch                0.10-0.6.20120824svn7502.fc18     fedora 
python3-dogpile-cache.noarch           0.4.2-1.fc18                      updates
python3-dogpile-core.noarch            0.4.1-1.fc18                      updates
python3-dtopt.noarch                   0.1-12.fc18                       updates
python3-easygui.noarch                 0.96-5.fc18                       fedora 
python3-enchant.noarch                 1.6.5-7.fc18                      fedora 
python3-execnet.noarch                 1.1-3.fc18                        fedora 
python3-fdb.noarch                     1.1-1.fc18                        updates
python3-feedparser.noarch              5.1.3-2.fc18                      updates
python3-flexmock.noarch                0.9.4-3.fc18                      fedora 
python3-forensic1394.x86_64            0.2-5.fc18                        updates
python3-gobject.i686                   3.4.2-6.fc18                      fedora 
python3-gobject.x86_64                 3.4.2-6.fc18                      fedora 
python3-gunicorn.noarch                0.17.2-1.fc18                     updates
python3-h5py.x86_64                    2.1.0-1.fc18                      updates
python3-html5lib.noarch                0.95-3.fc18                       fedora 
python3-httpie.noarch                  0.5.0-2.fc18                      updates
python3-httplib2.noarch                0.7.7-1.fc18                      updates
python3-inotify.noarch                 0.9.4-1.fc18                      updates
python3-iptools.noarch                 0.6.1-1.fc18                      updates
python3-ipython.noarch                 0.13.2-1.fc18                     updates
python3-ipython-console.noarch         0.13.2-1.fc18                     updates
python3-ipython-gui.noarch             0.13.2-1.fc18                     updates
python3-ipython-notebook.noarch        0.13.2-1.fc18                     updates
python3-ipython-tests.noarch           0.13.2-1.fc18                     updates
python3-jinja2.noarch                  2.6-5.fc18                        fedora 
python3-kombu.noarch                   2.4.7-1.fc18                      fedora 
python3-libs.i686                      3.3.0-1.fc18                      fedora 
python3-llfuse.x86_64                  0.37.1-11.fc18                    fedora 
python3-logging-tree.noarch            1.1-2.fc18                        updates
python3-logutils.noarch                0.3.2-1.fc18                      updates
python3-lxml.x86_64                    3.2.1-1.fc18                      updates
python3-mako.noarch                    0.5.0-5.fc18                      fedora 
python3-manuel.noarch                  1.7.1-2.fc18                      updates
python3-markdown.noarch                2.2.1-1.fc18                      fedora 
python3-markdown2.noarch               2.1.0-1.fc18                      fedora 
python3-markupsafe.x86_64              0.11-7.fc18                       fedora 
python3-matplotlib.x86_64              1.2.0-12.fc18                     updates
python3-matplotlib-qt4.x86_64          1.2.0-12.fc18                     updates
python3-matplotlib-tk.x86_64           1.2.0-12.fc18                     updates
python3-mccabe.noarch                  0.2.1-2.fc18                      updates
python3-messaging.noarch               1.0-1.fc18                        updates
python3-mglob.noarch                   0.4-7.fc18                        fedora 
python3-minimock.noarch                1.2.7-4.fc18                      fedora 
python3-mock.noarch                    0.8.0-4.fc18                      fedora 
python3-mpi4py-mpich2.x86_64           1.3-5.fc18                        fedora 
python3-mpi4py-openmpi.x86_64          1.3-5.fc18                        fedora 
python3-networkx.noarch                1.7-1.fc18                        fedora 
python3-nose.noarch                    1.3.0-1.fc18                      updates
python3-nose-cover3.noarch             0.1.0-4.fc18                      fedora 
python3-nose-exclude.noarch            0.1.9-2.fc18                      updates
python3-nose-progressive.noarch        1.5-2.fc18                        updates
python3-numpy.x86_64                   1:1.7.1-1.fc18                    updates
python3-numpy-f2py.x86_64              1:1.7.1-1.fc18                    updates
python3-optcomplete.noarch             1.2-0.3.20130428hg9583af7.fc18    updates
python3-paste-deploy.noarch            1.5.0-8.fc18                      updates
python3-pbs.x86_64                     4.3.3-3.fc18                      fedora 
python3-pexpect.noarch                 2.5.1-5.fc18                      fedora 
python3-pip.noarch                     1.3.1-1.fc18                      updates
python3-pkgwat-api.noarch              0.7-3.fc18                        updates
python3-plumbum.noarch                 1.1.0-2.fc18                      updates
python3-ply.noarch                     3.4-3.fc18                        fedora 
python3-postgresql.x86_64              1.0.2-4.fc18                      fedora 
python3-power.noarch                   1.1-4.20121103git2cfe611.fc18     updates
python3-prettytable.noarch             0.6.1-1.fc18                      fedora 
python3-profilehooks.noarch            1.6-3.fc18                        fedora 
python3-psutil.x86_64                  0.6.1-1.fc18                      fedora 
python3-psycopg2.x86_64                2.4.5-6.fc18                      fedora 
python3-psycopg2-debug.x86_64          2.4.5-6.fc18                      fedora 
python3-ptrace.x86_64                  0.6.4-2.fc18                      updates
python3-py.noarch                      1.4.14-1.fc18                     updates
python3-pyasn1.noarch                  0.1.2-3.fc18                      updates
python3-pyasn1-modules.noarch          0.1.2-3.fc18                      updates
python3-pycmd.noarch                   1.0-7.fc18                        fedora 
python3-pyfits.x86_64                  3.1.1-1.fc18                      updates
python3-pygments.noarch                1.4-7.fc18                        fedora 
python3-pygpgme.x86_64                 0.3-5.fc18                        updates
python3-pygrib.x86_64                  1.9.5-2.fc18                      updates
python3-pykde4.i686                    4.10.3-1.fc18                     updates
python3-pykde4.x86_64                  4.10.3-1.fc18                     updates
python3-pykde4-akonadi.i686            4.10.3-1.fc18                     updates
python3-pykde4-akonadi.x86_64          4.10.3-1.fc18                     updates
python3-pykde4-devel.i686              4.10.3-1.fc18                     updates
python3-pykde4-devel.x86_64            4.10.3-1.fc18                     updates
python3-pyke.noarch                    1.1.1-9.fc18                      fedora 
python3-pymongo.x86_64                 2.3-6.fc18                        updates
python3-pymongo-gridfs.x86_64          2.3-6.fc18                        updates
python3-pyp2rpm.noarch                 0.5.2-1.fc18                      updates
python3-pyparsing.noarch               1.5.6-8.fc18                      updates
python3-pyproj.x86_64                  1.9.2-5.20120712svn300.fc18       fedora 
python3-pyramid.noarch                 1.4-9.fc18                        updates
python3-pyro.noarch                    4.14-1.fc18                       fedora 
python3-pyshp.noarch                   1.1.4-5.fc18                      fedora 
python3-pytest.noarch                  2.3.4-1.fc18                      fedora 
python3-python-pkgwat-api.noarch       0.3-5.fc18                        fedora 
python3-pytz.noarch                    2012d-2.fc18                      fedora 
python3-pyxdg.noarch                   0.24-1.fc18                       fedora 
python3-repoze-lru.noarch              0.4-3.fc18                        updates
python3-requests.noarch                1.1.0-3.fc18                      updates
python3-restauth.noarch                0.5.1-6.fc18                      fedora 
python3-restauth-common.noarch         0.5.1-6.fc18                      fedora 
python3-rtslib.noarch                  2.1.fb34-1.fc18                   updates
python3-scipy.x86_64                   0.12.0-2.fc18                     updates
python3-setproctitle.x86_64            1.1.6-1.fc18                      fedora 
python3-setuptools.noarch              0.6.28-3.fc18                     fedora 
python3-sieve.noarch                   0.1.6-7.fc18                      fedora 
python3-simplegeneric.noarch           0.8-5.fc18                        fedora 
python3-simplevisor.noarch             0.8-1.fc18                        updates
python3-sip.i686                       4.14.6-1.fc18                     updates
python3-sip.x86_64                     4.14.6-1.fc18                     updates
python3-sip-devel.i686                 4.14.6-1.fc18                     updates
python3-sip-devel.x86_64               4.14.6-1.fc18                     updates
python3-six.noarch                     1.2.0-1.fc18                      fedora 
python3-sleekxmpp.noarch               1.1.11-2.fc18                     updates
python3-smbc.x86_64                    1.0.13-6.fc18                     updates
python3-smbpasswd.x86_64               1.0.1-21.fc18                     fedora 
python3-sphinx.noarch                  1.1.3-5.fc18                      fedora 
python3-sqlalchemy.x86_64              0.7.10-1.fc18                     updates
python3-stem.noarch                    1.0.1-4.fc18                      updates
python3-stomppy.noarch                 3.0.5-3.fc18                      fedora 
python3-straight-plugin.noarch         1.4.0-1.fc18                      updates
python3-svg-path.noarch                1.0b1-1.fc18                      updates
python3-taskw.noarch                   0.4.3-2.fc18                      fedora 
python3-tempita.noarch                 0.5.1-4.fc18                      fedora 
python3-test.i686                      3.3.0-1.fc18                      fedora 
python3-test.x86_64                    3.3.0-1.fc18                      fedora 
python3-testtools.noarch               0.9.21-1.fc18                     fedora 
python3-tkinter.i686                   3.3.0-1.fc18                      fedora 
python3-tkinter.x86_64                 3.3.0-1.fc18                      fedora 
python3-tools.i686                     3.3.0-1.fc18                      fedora 
python3-tools.x86_64                   3.3.0-1.fc18                      fedora 
python3-tornado.noarch                 2.2.1-3.fc18                      fedora 
python3-tornado-doc.noarch             2.2.1-3.fc18                      fedora 
python3-translationstring.noarch       1.1-4.fc18                        updates
python3-uinput.x86_64                  0.9-2.fc18                        fedora 
python3-urllib3.noarch                 1.5-5.fc18                        updates
python3-urwid.x86_64                   1.1.1-1.fc18                      fedora 
python3-venusian.noarch                1.0-0.1.a7.fc18                   updates
python3-waitress.noarch                0.8.3-1.fc18                      updates
python3-webob1.2.noarch                1.2.3-2.fc18                      updates
python3-webtest.noarch                 1.3.4-4.fc18                      updates
python3-workerpool.noarch              0.9.2-4.fc18                      updates
python3-xmltodict.noarch               0.4.2-1.fc18                      updates
python3-zc-buildout.noarch             2.1.0-3.fc18                      updates
python3-zc-customdoctests.noarch       1.0.1-1.fc18                      updates
python3-zmq.x86_64                     2.2.0.1-1.fc18                    updates
python3-zmq-tests.x86_64               2.2.0.1-1.fc18                    updates
python3-zope-component.noarch          4.0.2-2.fc18                      updates
python3-zope-configuration.noarch      4.0.2-1.fc18                      updates
python3-zope-deprecation.noarch        3.5.1-1.fc18                      updates
python3-zope-event.noarch              4.0.2-1.fc18                      updates
python3-zope-exceptions.noarch         4.0.5-1.fc18                      updates
python3-zope-fixers.noarch             1.1.2-1.fc18                      updates
python3-zope-i18nmessageid.x86_64      4.0.2-1.fc18                      updates
python3-zope-interface.x86_64          4.0.4-1.fc18                      updates
python3-zope-proxy.x86_64              4.1.1-2.fc18                      updates
python3-zope-schema.noarch             4.3.2-1.fc18                      updates
python3-zope-testing.noarch            4.1.2-1.fc18                      updates
Bruno
Asymptote :
----> Démarrage rapide : http://cgmaths.fr/Atelier/Asymptote/Asymptote.html
----> Documentation 3D : http://www.mathco.tuxfamily.org et si ça ne marche pas, essayez la version pdf
projetmbc
Utilisateur chevronné
Utilisateur chevronné
Messages : 2238
Inscription : samedi 29 décembre 2007, 00:58

Re: Python3

Message non lu par projetmbc »

Une petite distribution Python 3 avec ce qu'il faut en maths pour le Lycée : pyzo. Très efficace sous Mac si ce n'est que l'on pas accès au python3 via le terminal.
OG
Modérateur spécialisé
Modérateur spécialisé
Messages : 2293
Inscription : lundi 12 mars 2007, 11:20
Localisation : Rouen

Re: Python3

Message non lu par OG »

projetmbc a écrit :Une petite distribution Python 3 avec ce qu'il faut en maths pour le Lycée : pyzo. Très efficace sous Mac si ce n'est que l'on pas accès au python3 via le terminal.
Oui. Les collègues de prépa utilisent cette distribution dans leur lycée.
J'ai trouvé cela un peu lourd par rapport à ipython tout seul dans le terminal, mais j'imagine qu'il y a des avantages à utiliser un tel ide.

O.G.
projetmbc
Utilisateur chevronné
Utilisateur chevronné
Messages : 2238
Inscription : samedi 29 décembre 2007, 00:58

Re: Python3

Message non lu par projetmbc »

L'intérêt c'est que tu as du Python3 clé en main sur les trois OS standards. Donc c'est très intéressants. Quant à l'IDE, moi je bosse sur un simple éditeur de texte avec de la coloration syntaxique. Python permet cela.
marco56
Utilisateur chevronné
Utilisateur chevronné
Messages : 1136
Inscription : jeudi 25 novembre 2010, 22:10

Re: Python3

Message non lu par marco56 »

kojak a écrit :Bonjour,

Une question naïve : on fait de l'algo maintenant au collège ?

Si tel est le cas, j'en suis fort surpris : il me semble qu'il y aurait d'autres priorités... mais bon...
[edit] : message effacé.
@+
Répondre