Print value from array

Mike miguelcoam at gmail.com
Thu Nov 22 13:44:02 EST 2012


Hello,
I am noob en python programing,  i wrote a perl script for read from csv but now i wish print value but the value must be within double quote and I can not do this. 

For example now the output is:

ma user at domain displayName Name SecondName givenName Name sn SecondName cn Name

and i wish

ma "user at domain" displayName "Name Lastname" givenName "Name" sn "SecondName" cn "Name"

My script is

#!/usr/bin/python
import csv

with open ('file.csv', 'rb') as f:
	reader = csv.reader (f, delimiter=';' )
	for row in reader:
		mail 	 = row [0]
		name 	 = row [1]
		lastname = row [2]
		name2  = row [1] + ' ' + row [2]
		
		print  'ma ' + mail + ' displayName ' +  name2.title() + ' givenName ' + name.title() + ' sn ' + lastname.title() + ' cn ' + name.title()  

	#	print '\n'

f.close() 



More information about the Python-list mailing list