I have a list as follows:
data_content=['Country', 'Capital', 'Currency', 'US', 'Washington', 'USD', 'India', 'Delhi', 'Rupee']
I want to have it as follows:
Country Capital Currency
------------------------
US Washington USD
India Delhi Rupee
My aim is to then export this table to panda dataframe.