I am working on getting some data, and as I am getting this data in a list, I want to write it into a csv file (maybe using pandas)
The data I want to convert is in the form of list:
['Val Guene',
'Vice President at Global Impact Partners',
[['Vice President',
'Global Impact Partners',
'Apr 2019',
'Present',
'2 yrs 3 mos',
'N/A',
' '],
['Executive Board Member',
'Prismflare',
'Nov 2018',
'Present',
'2 yrs 8 mos',
'N/A',
''],
['Co-Founder',
'Prismflare',
'Jul 2017',
'Nov 2018',
'1 yr 5 mos',
'N/A',
''],
['Executive Board Member',
'SDS Masala',
'Feb 2019',
'Apr 2021',
'2 yrs 3 mos',
'New Delhi Area, India',
' '],
['Manager',
'PwC',
'Jul 2018',
'Jan 2019',
'7 mos',
'Greater New York City Area',
''],
['Senior Associate', 'PwC', 'Jul 2015', 'Jun 2018', '3 yrs', 'N/A', ''],
['Experienced Associate', 'PwC', 'Jul 2013', 'Jun 2015', '2 yrs', 'N/A', ''],
['Associate', 'PwC', 'Aug 2012', 'Jun 2013', '11 mos', 'N/A', ''],
['Fellow',
'Martindale Center for the Study of Private Enterprise',
'Jan 2011',
'Aug 2012',
'1 yr 8 mos',
'N/A',
' ']],
[['Harvard University', 'Graduate', 'Philosophy', '2012', '2012'],
['Lehigh University',
"Bachelor's degree",
'Economics, International Relations, Psychology',
'2008',
'2012'],
['UWC-USA', 'International Baccalaureate', 'Economics', '2006', '2008']]]
I am wondering if I could get it in the form:
Name Tag Role Company Start End and so on...
The education and experience detail varies in different lists, I tried using pandas with columns attribute but it failed. I am trying to make it in the form where each row has one experience/education detail
