工作中處理文本的python程式碼片段

來源:互聯網
上載者:User
 1 # -- coding:utf-8 -- 2  3 import sys, time, os, re 4 import urllib, urllib2, cookielib 5 from datetime import datetime 6  7 print '當前日期:%s' % datetime.now().strftime('%Y-%m-%d')  8 print '作者:ly' 9 10 #儲存輸出資料11 ofile = open('data.txt', 'w')12 13 with open('0706.txt', 'r') as ifile:14     print '開始讀取資料,跳過第一行:%s' % ifile.readline()15     #記錄行數16     i=0;17     for line in iter(ifile.readline, ''):18         i+=119         #將行資料中的多個空白壓縮為一個20         line = re.sub('\s+',' ', line)21 22         #擷取items[0], items[1:], 去除後面兩個item23         items = line.split(' ')[:-2]24         if items:25             productcode=items[0]26             productname=' '.join(items[1:])27             ofile.write('                {"%s", "%s"},\r' % (productcode, productname))28 29 #輸出總行數30 ofile.write('\r\n %d' % i)
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.