Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

this is my main string

"action","employee_id","name"
"absent","pritesh",2010/09/15 00:00:00

so after name coolumn its goes to new line but here i append to list a new line character is added and make it like this way

data_list*** ['"action","employee_id","name"\n"absent","pritesh",2010/09/15 00:00:00\n']

here its append the new line character with absent but actually its a new line strarting but its appended i want to make it like

data_list*** ['"action","employee_id","name","absent","pritesh",2010/09/15 00:00:00']

share|improve this question
2  
I don't understand the syntax you are using. What's with all the asterisks? – Marcelo Cantos May 25 '10 at 9:46
2  
Maybe you wanted too use docs.python.org/library/csv.html – badp May 25 '10 at 9:52

5 Answers

Davide's answer can be written even simpler as:

data_list = [word.strip() for word in data_list]

But I'm not sure it's what you want. Please write some sample in python.

share|improve this answer
with strip you get also rid of the '\r' – Blauohr May 25 '10 at 11:17

First, you can use strip() to get rid of '\n':

>>> data = line.strip().split(',')

Secondly, you may want to use the csv module to do that:

>>> import csv
>>> f = open("test")
>>> r = csv.reader(f)
>>> print(r.next())
['action', 'employee_id', 'name']
share|improve this answer

replaces = inString.replace("\n", "");

share|improve this answer
def f(word):
    return word.strip()
data_list = map(f, data_list)
share|improve this answer
Surely you meant map? :) – badp May 25 '10 at 9:53
Yes, I did :) Edited accordingly :) – Davide Gualano May 25 '10 at 9:56

I'd do like that:

in_string.replace('\n', ',', 1).split(',')
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.