把文件每行的tab鍵分隔符改成逗號分隔符


######################################
#把文件每行的tab鍵分隔符改成逗號分隔符   #
######################################

from smtplib import  SMTP as smtp
from time import sleep
import linecache

startLine = 1
endLine   = 517
i=startLine
#read file content
try:
##    fobj=open("renren_45w.txt.txt",'r')
    fok=open('163_ok.txt','a+')
except IOError,e:
    print "open error",e

try:    
    while(i>=startLine and i<=endLine):
        try:
            line = linecache.getline("163.txt",i)
            if len(line.strip())>0:                
##                print line,'len:',len(line)
                line=line.replace("\t\n","\n").replace("\t",",")
                fok.write(line)                                       
                i=i+1
        except Exception,e:
            print e           
##            continue   
except Exception,e:
    print e        
         
fok.close()
print('Down')

   

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM