Question EXCEL - urgent SVP

Question EXCEL - urgent SVP - Windows & Software

Marsh Posté le 02-09-2002 à 18:00:43    

comment transformer sous excel ça :
 
nom1 nom2 nom3
adr1 adr2 adr3
 
 
en ça :
 
nom1 adr1
nom2 adr2
nom3 adr3

Reply

Marsh Posté le 02-09-2002 à 18:00:43   

Reply

Marsh Posté le 02-09-2002 à 18:10:07    

#! /usr/bin/python
 
import sys
 
truc = map(lambda x: x.split(), sys.stdin.readlines())
truc = map(None, truc[0], truc[1])
sys.stdout.writelines(map(lambda x:'%s\n'%' '.join(x),truc))
 
 
:D


---------------
« No question is too silly to ask, but, of course, some are too silly to answer. » -- Perl book
Reply

Marsh Posté le 02-09-2002 à 18:10:28    

manu_42 a écrit a écrit :

comment transformer sous excel ça :
 
nom1 nom2 nom3
adr1 adr2 adr3
 
 
en ça :
 
nom1 adr1
nom2 adr2
nom3 adr3




Ca a rien à voir avec de la prog, mais bon.
Tu fait copier puis collage spécial -> transposé.

Reply

Marsh Posté le 02-09-2002 à 18:11:11    

hop sur soft & reseaux


---------------
mes programmes ·· les voitures dans les films ·· apprenez à écrire
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed