From a761e962c0ef98be3994cabb1c2b614601f78216 Mon Sep 17 00:00:00 2001 From: Geoffrey Frogeye Date: Tue, 27 Jan 2015 11:25:40 +0100 Subject: [PATCH] =?UTF-8?q?TP2=20Une=20fonction=20sort=20pour=20les=20cha?= =?UTF-8?q?=C3=AEnes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- S2/TP2/tp2.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/S2/TP2/tp2.py b/S2/TP2/tp2.py index ae49cc0..269f2fc 100644 --- a/S2/TP2/tp2.py +++ b/S2/TP2/tp2.py @@ -124,6 +124,7 @@ print('De par cet exemple, on remarque que chaine reste la même chaîne de cara question(4) def join(chaine, sequence): + # TODO Docstring res = '' l = len(sequence) for i in range(l): @@ -174,6 +175,15 @@ section('Une fonction sort pour les chaînes') question(1) +def sort(chaine): + # TODO Docstring + # TODO On peut pas faire plus court ? + l = list(chaine) + l.sort() + return ''.join(l) + +print('>>> sort(\'timoleon\')') +print(sort('timoleon')) partie('Anagrammes') # Jean-loup