I have got a DataFrame with one of the series containing tuples like:
[('Available', 'Now'),
('Age', '27'),
('Language', 'English'),
('Nationality', 'British'),
('Gender', 'Male')]
I need to convert this into a table with first part of the tuple as the column name and second as value.
Thank you!