Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How python-csv converts text to csv File

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

Python-csv how to convert text to csv file, many novices are not very clear about this, in order to help you solve this problem, the following small series will explain in detail for everyone, there are people who need this can learn, I hope you can gain something.

import csv def txt2csv(inputfile,outputfile): datacsv = open(outputfile,'w') csvwriter = csv.writer(datacsv,dialect=("excel")) mainfileH = open(inputfile,'rb') for line in mainfileH.readlines(): print "Debug: " + line.replace('\n','') csvwriter.writerow([a for a in line.replace('\n','').split('#')]) datacsv.close() mainfileH.close() Note: Before calling txt2csv, confirm that txtfile is closed (), which has been encountered before. If there is no txtfile.close(), the txtfile file read by readlines is only 8192 bytes, and the characters after it are not read. Also, the newline character in txtfile needs to be replaced by '' by replace, otherwise it will be converted to csv, and there will be a blank line between every two lines. txt2csv (txtfile,csvFile) Is it helpful to read the above? If you still want to have further understanding of related knowledge or read more related articles, please pay attention to the industry information channel, thank you for your support.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report