
# https://www.globalsino.com/ICs/page4853.html
# Write the contents of the Frame into a CSV file



import pandas as pd
import os

df = pd.DataFrame({'name': ['Yougui', 'Soyi'],
                   'mask': ['Green', 'Red'],
                   'Year': ['2001', '1921']})

path=('C:\GlobalSino\images\TestImages\Excel')

df.to_csv(os.path.join(path, 'to_csv_test.csv'))


