import pandas as pd data = {'Product': ['Desktop Computer','Tablet','Printer','Laptop'], 'Price': [850,200,150,1300] } df = pd.DataFrame(data, columns= ['Product', 'Price']) df.to_csv(r'Path where you want to store the exported CSV file\File Name.csv') print (df)
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter