
# https://www.globalsino.com/ICs/
# Convert a CSV file to a TXT file

from queue import Queue

q = Queue()

with open(r"C:\0Python\Data.csv",'r+') as f:
    for CSVline in f:
        q.put(CSVline)
        with open(r"C:\0Python\Data.txt","a") as done:
            TXTline = q.get()
            done.write(TXTline)
