From da7a9b23f54be194c228d01df863e5ca41edf889 Mon Sep 17 00:00:00 2001 From: Jean-Loup Beaussart Date: Tue, 10 Feb 2015 11:19:49 +0100 Subject: [PATCH] =?UTF-8?q?Troisi=C3=A8me=20fois,=20c'est=20la=20bonne,=20?= =?UTF-8?q?gestion=20correct=20des=20espaces=20dans=20les=20noms=20et=20en?= =?UTF-8?q?=20fin=20de=20nom?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- S2/TP3/bataille_navale.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/S2/TP3/bataille_navale.py b/S2/TP3/bataille_navale.py index 303ac8f..5bb6629 100644 --- a/S2/TP3/bataille_navale.py +++ b/S2/TP3/bataille_navale.py @@ -107,7 +107,7 @@ def lire_donnees(num_descr): i=0 tmp='' - while(contenu[0][i] != ' '): + while(contenu[0][i] != ':'): tmp += contenu[0][i] i+=1 @@ -115,7 +115,7 @@ def lire_donnees(num_descr): #On lit la hauteur - i+=2 + i+=1 tmp='' while(contenu[0][i] != '\n'): tmp += contenu[0][i] @@ -131,11 +131,12 @@ def lire_donnees(num_descr): nom='' tailleStr='' j=0 - while(contenu[i][j] != ' '): + while(contenu[i][j] != ':'): nom += contenu[i][j] j+=1 + nom = nom[:-1] #on supprime l'espace - j+=2 + j+=1 while(contenu[i][j] != '\n'): tailleStr += contenu[i][j] j +=1 @@ -150,7 +151,7 @@ print(lire_donnees('1')) # #Fichier personnalisé -prin(lire_donnees('3')) +print(lire_donnees('3')) #