

# https://www.globalsino.com/ICs/
# Convert a text file to a csv file with adding column headings

import pandas as pd

read_file = pd.read_csv (r"C:\0Python\Data2.txt", delimiter = '/')

read_file.to_csv (r"C:\0Python\ConvertedData222.csv", index=None)
