I have two list in python and i want to convert that in a table and export it as csv file.
print price
print name
Output:
[u'\xa34', u'\xa38', u'\xa312', u'\xa30']
[u'apple', u'orange', u'mango', u'pineapple']
The final output i want is:
Name Price
Apple 34
Orange 38
Mango 312
Pineapple 30
I tried using pandas but i am unable to do so. Could someone suggest me some link so that i can study about creating a table and exporting it.