I am saving a csv file by reading my serial port. Few lines of my csv file:
*
20/01/20,10:13:59,"11 22
"
20/01/20,10:13:59,"11 22
"
20/01/20,10:13:59,"11 22
"
*
I would like to get the date, time and my 2 data all in a list as a[0] as date, a[1] as time, a[1]=data1, a[3]=data2
But I am not able to separate the 2 data, they come in the same column this is the code snippet
from pandas import read_csv
df = read_csv('test_csvtry1.csv')
output is:
A dataframe 7x3 but i want it as 7x4
"
1 20/01/20 10:13:59 "11 22
"
2 20/01/20 10:13:59 "11 22
"
3 20/01/20 10:13:59 "11 22
"
4 20/01/20 10:13:59 "11 22
"
5 20/01/20 10:13:59 "11 22
"
6 20/01/20 10:13:59 "11 22
"
Kindly can someone let me know how this can be done?