把文件每行的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