this is my main line
"action","employee_id","name" "absent","pritesh",2010/09/15 00:00:00
so after the name coolumn it goes to a new line, but here I add a new line character to the list and does it like this
data_list ***** ['"action","employee_id","name"\n"absent","pritesh",2010/09/15 00:00:00\n']
here a new line symbol is added with the missing one, but in fact its new line is strarting, but its added I want to do it like
data_list ***** ['"action","employee_id","name","absent","pritesh",2010/09/15 00:00:00']
source share